List HubSpot Record Associations
hubspot_list_associationsLists all CRM records of a specified type associated with a source contact, company, or deal. Use to retrieve connected entities by record ID and object type.
Instructions
List all records of a given type associated with a source CRM record.
Args:
fromObjectType: "contacts" | "companies" | "deals"
fromObjectId: Source record ID
toObjectType: Object type to list associations for
Example: List all companies associated with contact 12345 fromObjectType="contacts", fromObjectId="12345", toObjectType="companies"
Returns: { associations: [{ id: string, type: string }], total: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fromObjectType | Yes | Source object type | |
| fromObjectId | Yes | Source record ID | |
| toObjectType | Yes | Associated object type to list |