HubSpot Connector
The Hubspot Connector is an outbound Connector that allows you to connect your BPMN service with HubSpot to manage HubsSpot contacts, companies, and deals.
Prerequisites
To use the HubSpot Connector, you must have a HubSpot account and a Bearer token to authenticate requests.
When creating a private app, you must grant the permissions required to access the HubSpot API. Different operations require different permissions. To use all HubSpot connector operations, add the following permissions to your app:
crm.objects.contacts.read
crm.objects.contacts.write
crm.objects.companies.read
crm.objects.companies.write
crm.objects.deals.read
crm.objects.deals.write
crm.lists.read
crm.lists.write
Use Camunda secrets to avoid exposing your token credentials as plain text. Refer to our documentation on managing secrets to learn more.
Create a HubSpot Connector task
You can apply a Connector to a task or event via the append menu. For example:
- From the canvas: Select an element and click the Change element icon to change an existing element, or use the append feature to add a new element to the diagram.
- From the properties panel: Navigate to the Template section and click Select.
- From the side palette: Click the Create element icon.
After you have applied a Connector to your element, follow the configuration steps or see using Connectors to learn more.
Select operation to execute
The HubSpot Connector currently supports the following operations.
Contacts
Get all contacts
- Next page after object id: HubSpot limits the number of results to 100 and provides pagination. To retrieve the first page keep this field empty. To retrieve the following page, set it to
response.body.paging.next.after
from the previous page.
Get contact by id
- Contact ID: The ID of the contact.
Get multiple contacts by id
- Contact ids: The IDs of the contacts to retrieve. This is limited to 100 contacts.
Search contact
- Search field: The field to search for. For example, "lastname".
- Search value: The value to search for. For example, "Smith".
All contacts matching the search criteria are returned.
Create contact
- Properties: The properties of the contact to create. Learn more about properties and default properties of contacts.
- Company ID: The ID of the company the contact is associated with. HubSpot automatically adds the contact to the company if the mail address domain matches the company domain. For example, "jane.doe@camunda.com" is automatically added to the company with the domain "camunda.com". If you set the company ID manually, the contact is added to the company with the given ID AND the company with the matching domain.
Update contact
- Properties: The properties of the contact to update. Learn more about properties and default properties of contacts. Only add properties you want to adjust to the properties field.
- Contact ID: The ID of the contact to update.
It is not possible to update associations to companies with this operation. To do so use the add contact to
or remove contact from company
operations under Companies
.
Delete contact
- Contact ID: The ID of the contact to delete.
Companies
Get all companies
- Next page after object id: HubSpot limits the number of results to 100 and provides pagination. To retrieve the first page keep this field empty. To retrieve the following page, set it to
response.body.paging.next.after
from the previous page.
Get company by id
- Company ID: The ID of the company.
Search company
- Search field: The field to search for. For example, "name".
- Search value: The value to search for. For example, "Camunda".
All companies matching the search criteria are returned.
Get all contacts of a company
- Company ID: The ID of the company.
Add contact to company
- Contact ID: The ID of the contact.
- Company ID: The ID of the company.
Remove contact from company
- Contact ID: The ID of the contact.
- Company ID: The ID of the company.
Create company
- Properties: The properties of the company to create. Learn more about properties and default properties of companies.
Delete company
- Company ID: The ID of the company to delete.
Deals
Get all deals
- Next page after object id: HubSpot limits the number of results to 100 and provides pagination. To retrieve the first page keep this field empty. To retrieve the following page, set it to
response.body.paging.next.after
from the previous page.
Get deal by id
- Deal ID: The ID of the deal.
Search deal
- Search field: The field to search for. For example, "dealname".
- Search value: The value to search for. For example, "Inital Deal for Camunda".
All deals matching the search criteria are returned.
Delete deal
- Deal ID: The ID of the deal to delete.
Miscellaneous
Submit form
- Portal ID: The HubSpot account that the form belongs to. Learn more
- Form ID: The unique ID of the form you are sending data to. Learn more
- Form fields: The value of the input fields of the form. Learn more
Add element to list
- List ID: The ID of the list.
- Object IDs: The IDs of the objects to add to the list.
Adding elements to a list may take a few seconds to be reflected in the HubSpot UI.
Handle Connector response
As the HubSpot Connector is a protocol Connector (built on top of the HTTP REST Connector) the handling response is still applicable as described.