Hubspot - sgml/signature GitHub Wiki
OpenAPI Hubspot
- http://api.hubspot.com/public/api/spec/v1/specs
- https://developers.hubspot.com/beta-docs/reference/api/deprecated/overview
OAuth
- https://developers.hubspot.com/beta-docs/guides/api/app-management/oauth-tokens
- https://knowledge.hubspot.com/account-security/set-up-single-sign-on-sso
Certifications
Webhooks
- https://knowledge.hubspot.com/workflows/how-do-i-use-webhooks-with-hubspot-workflows
- https://community.hubspot.com/t5/APIs-Integrations/How-to-implement-Webhooks-in-HubSpot-and-how-do-they-differ-from/m-p/356711
Error Codes
- urllib3.exceptions.MaxRetryError
- urllib3.exceptions.NewConnectionError
- socket.gaierror: [Errno -2] Name or service not known
Properties
- 'hs_object_source': 'IMPORT'
Imports
- https://developers.hubspot.com/docs/api/crm/imports#endpoint?spec=POST-/crm/v3/imports/
- https://community.hubspot.com/t5/APIs-Integrations/Bulk-Import-Date-Format-Problem/td-p/419793
- https://community.hubspot.com/t5/APIs-Integrations/Bulk-Import-CRM-Data-help/m-p/355354
- https://knowledge.hubspot.com/crm-setup/troubleshoot-import-errors
Duplicates
- https://blog.insycle.com/picking-master-record-crm-deduplication
- https://blog.hubspot.com/customers/data-duplication-and-hubspot-impact-your-business
Custom Objects
- https://www.hq-digital.com/blog/custom-associations-between-native-hubspot-objects
- https://developers.hubspot.com/beta-docs/guides/api/crm/objects/custom-objects?uuid=e74719b8-a4d7-4485-a9a2-2edd5025a077
- https://developers.hubspot.com/beta-docs/reference/api/crm/associations/association-details/v3
Custom Search API
- https://github.com/search?q=PublicObjectSearchRequest+filter+property+operator+%22not%22+language%3APython&type=code&l=Python
- https://github.com/HubSpot/hubspot-api-python/issues/49
HubDB CMS API
- https://developers.hubspot.com/docs/cms/data/hubdb
- https://developers.hubspot.com/beta-docs/guides/cms/storage/hubdb/overview
- https://developers.hubspot.com/beta-docs/guides/api/cms/hubdb
Hubspot Markup Language: HubL/JinJava
- https://developers.hubspot.com/docs/cms/hubl
- https://knowledge.hubspot.com/help-and-resources/hubspot-language-offerings
- https://community.hubspot.com/t5/Share-Your-Work/How-to-create-Hubspot-test-dummy-data/m-p/547034
- https://product.hubspot.com/blog/jinjava-a-jinja-for-your-java
- https://github.com/HubSpot/jinjava/blob/b0f8c994f6ccb5aa8b6997895fb2c867c9ee723b/README.md
Hubspot App Marketplace
- https://developers.hubspot.com/beta-docs/guides/apps/public-apps/overview
- https://www.hubspot.com/app-partner-case-studies/aircall
- https://www.hubspot.com/app-partner-case-studies/rollworks
- https://www.hubspot.com/app-partner-case-studies/quotapath
Hubspot Rate Limits and API Request Monitoring
- https://developers.hubspot.com/changelog/2018-11-06-rate-limit-information-headers-will-be-included-in-http-responses
- https://legacydocs.hubspot.com/docs/methods/get-account-details
- https://legacydocs.hubspot.com/docs/faq/working-within-the-hubspot-api-rate-limits
- https://developers.hubspot.com/docs/api/usage-details
- https://legacydocs.hubspot.com/docs/faq/api-request-monitoring
Blogs
Idioms
IDS
- IDs go by the name
vid
,id, and
hs_object_id` in the legacy API, modern contacts API, and modern properties API respectively
Legacy Contacts API
- set both the formSubmissionMode=none and the showListMemberships=false URL params to minimize the signal/noise ratio in the API response
- set the propertyMode=value_only URL param to only return the current property value; unset it to return the history of the property over time
V3 Search API
- The token search filters only accept alphanumeric values, which is different from the Hubspot GUI, which accepts all characters
Custom Object Creation to deserialize JSON
Definition
from hubspot import HubSpot
from hubspot.crm.objects import SimplePublicObjectInput
from hubspot.crm.schemas import ObjectTypeDefinition, ObjectTypePropertyCreate
# Initialize the HubSpot client
client = HubSpot(api_key='your_hubspot_api_key')
# Define the custom object schema
object_type = ObjectTypeDefinition(
name='foo',
labels={'singular': 'Foo', 'plural': 'Foos'},
primaryDisplayProperty='bar'
)
# Define the property for the custom object
property_definition = ObjectTypePropertyCreate(
name='bar',
label='Bar',
type='string',
fieldType='text'
)
# Create the custom object schema
custom_object_response = client.crm.schemas.core_api.create(object_type)
property_response = client.crm.schemas.properties_api.create(
custom_object_response.object_type_id, property_definition
)
print(f"Custom Object Created: {custom_object_response}")
print(f"Property Created: {property_response}")
Instantiation
import json
# Example JSON data
json_data = '{"foo": [{"bar":"baz"}]}'
data = json.loads(json_data)
# Create custom object records
for item in data['foo']:
custom_object = SimplePublicObjectInput(properties={
'bar': item['bar']
})
record_response = client.crm.objects.basic_api.create(
object_type=custom_object_response.object_type_id, simple_public_object_input=custom_object
)
print(f"Custom Object Record Created: {record_response}")