delete_todo
Remove a todo item from your Things 3 task management system by marking it as canceled using its unique identifier.
Instructions
删除待办事项(通过将其标记为已取消)。需要提供待办事项ID和授权令牌。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 待办事项的ID(必需) | |
| authToken | No | 授权令牌(如未提供,将使用环境变量THINGS_AUTH_TOKEN) |
Input Schema (JSON Schema)
{
"properties": {
"authToken": {
"description": "授权令牌(如未提供,将使用环境变量THINGS_AUTH_TOKEN)",
"type": "string"
},
"id": {
"description": "待办事项的ID(必需)",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}