crm_get_associations
Retrieve specified associations between CRM objects like companies, contacts, deals, and tickets to manage relationships effectively within the HubSpot MCP server.
Instructions
Get all associations of a specific type between objects
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | ||
fromObjectId | Yes | ||
fromObjectType | Yes | ||
limit | No | ||
toObjectType | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}