todoist_reopen_task
Reopen a completed Todoist task using its unique ID to restore it to an active state for further action or tracking.
Instructions
Reopen a completed task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The ID of the completed task to reopen |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the completed task to reopen",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}