get_tasks
Retrieve a list of tasks from Kommo CRM with pagination and customizable limits to streamline task management and workflow efficiency.
Instructions
Get list of tasks from Kommo CRM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of tasks to return (max 250) | |
page | No | Page number for pagination |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of tasks to return (max 250)",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
}
},
"required": [],
"type": "object"
}