get_task_comments
Retrieve structured JSON data of all comments for a specific Todoist task, including content, posted date, user ID, and attachments, by providing the task ID.
Instructions
Get all comments for a specific Todoist task. Returns structured JSON data with comment details including id, content, posted date, user ID, and any attachments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | The ID of the task to get comments for |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "The ID of the task to get comments for",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}