todoist_create_comment
Add detailed comments to Todoist tasks or projects, including optional file attachments, to enhance collaboration and task clarity. Specify task or project ID for precise placement.
Instructions
Create a new comment on a task or project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment | No | Optional file attachment (optional) | |
content | Yes | The content/text of the comment | |
projectId | No | Project ID to add comment to (provide either taskId or projectId, not both) | |
taskId | No | Task ID to add comment to (provide either taskId or projectId, not both) |
Input Schema (JSON Schema)
{
"properties": {
"attachment": {
"description": "Optional file attachment (optional)",
"properties": {
"fileName": {
"type": "string"
},
"fileType": {
"type": "string"
},
"fileUrl": {
"type": "string"
},
"resourceType": {
"type": "string"
}
},
"type": "object"
},
"content": {
"description": "The content/text of the comment",
"type": "string"
},
"projectId": {
"description": "Project ID to add comment to (provide either taskId or projectId, not both)",
"type": "string"
},
"taskId": {
"description": "Task ID to add comment to (provide either taskId or projectId, not both)",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}