engagement_details_get_associated
Retrieve all engagements associated with a specific HubSpot CRM object such as contacts, companies, deals, or tickets to track interactions and activities.
Instructions
Get all engagements associated with an object
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectType | Yes | ||
| objectId | Yes | ||
| startTime | No | ||
| endTime | No | ||
| activityTypes | No | ||
| limit | No | ||
| offset | No |
Input Schema (JSON Schema)
{
"properties": {
"activityTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"endTime": {
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"objectId": {
"type": "string"
},
"objectType": {
"enum": [
"CONTACT",
"COMPANY",
"DEAL",
"TICKET"
],
"type": "string"
},
"offset": {
"type": "number"
},
"startTime": {
"type": "string"
}
},
"required": [
"objectType",
"objectId"
],
"type": "object"
}