todoist_reopen_task
Reopen a Todoist task by marking it as incomplete using the task ID. Restores tasks that were previously completed for better task management and organization.
Instructions
Reopen a task in Todoist (i.e., mark the task as incomplete)
Args: task_id: ID of the task to reopen
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"title": "todoist_reopen_taskArguments",
"type": "object"
}