todoist_get_comments
Retrieve comments for a specific task or project, including pagination support, to manage and review feedback efficiently within your Todoist workflow.
Instructions
Get comments for a task or project with pagination support
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor for next page (optional) | |
| limit | No | Maximum number of comments to return (optional) | |
| projectId | No | Project ID to get comments for (provide either taskId or projectId, not both) | |
| taskId | No | Task ID to get comments for (provide either taskId or projectId, not both) |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor for next page (optional)",
"type": "string"
},
"limit": {
"description": "Maximum number of comments to return (optional)",
"type": "number"
},
"projectId": {
"description": "Project ID to get comments for (provide either taskId or projectId, not both)",
"type": "string"
},
"taskId": {
"description": "Task ID to get comments for (provide either taskId or projectId, not both)",
"type": "string"
}
},
"type": "object"
}