engagement_details_list
Retrieve and filter HubSpot engagements by date range and activity types to access CRM interaction records with customizable pagination.
Instructions
List all engagements with optional filtering
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| startTime | No | ||
| endTime | No | ||
| activityTypes | No |
Input Schema (JSON Schema)
{
"properties": {
"activityTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"endTime": {
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"type": "number"
},
"startTime": {
"type": "string"
}
},
"type": "object"
}