crm_get_associations
Retrieve all associations between specified HubSpot CRM objects to understand relationships and connections in your customer data.
Instructions
Get all associations of a specific type between objects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fromObjectType | Yes | ||
| toObjectType | Yes | ||
| fromObjectId | Yes | ||
| after | No | ||
| limit | No |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"type": "string"
},
"fromObjectId": {
"type": "string"
},
"fromObjectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
},
"limit": {
"maximum": 500,
"minimum": 1,
"type": "number"
},
"toObjectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
}
},
"required": [
"fromObjectType",
"toObjectType",
"fromObjectId"
],
"type": "object"
}