get_contact_activities
Retrieve activities linked to a specific contact in Kommo CRM, using contact ID, with options to limit results and paginate for efficient data access and workflow tracking.
Instructions
Get activities for a specific contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_id | Yes | ID of the contact | |
limit | No | Number of activities to return | |
page | No | Page number for pagination |
Input Schema (JSON Schema)
{
"properties": {
"contact_id": {
"description": "ID of the contact",
"type": "number"
},
"limit": {
"description": "Number of activities to return",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
}
},
"required": [
"contact_id"
],
"type": "object"
}