Get deal
Tags: #hubspot #crm #sales #deal #naas_drivers #snippet #dataframe
Description : This notebook get a deal from HubSpot using its ID. Data will be returned as json with keys:
- 'id': number,
- 'properties': dict
- 'createdAt': datetime
- 'updatedAt': datetime
- 'archived': boolean
from naas_drivers import hubspot
import naas
👉 Starting November 30, 2022, HubSpot API keys no longer enable access to HubSpot APIs, so in Naas version 2.8.3 and above, you need create a private app and use the access token.
Enter Your Access Token
HS_ACCESS_TOKEN = naas.secret.get("HS_ACCESS_TOKEN") or "YOUR_HS_ACCESS_TOKEN"
Enter your Deal ID
deal_id = 'ENTER_DEAL_ID_HERE' # "70915045"
Enter your Deal properties
List of properties you want to get from deal.
By default, you will get:
- dealname
- amount
- dealstage
- pipeline
- createdate
- closedate
- hs_object_id
- hs_lastmodifieddate
properties = []
deal = hubspot.connect(HS_ACCESS_TOKEN).deals.get(deal_id, properties)
deal
Last modified 2mo ago