get_task
Retrieve a specific Todoist task using its unique ID to access task details and information for management purposes.
Instructions
Get a specific task by ID.
Args:
task_id: The ID of the task to retrieve
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}