delete_project
Remove projects from your Things 3 task management system by marking them as canceled using the project ID.
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"
}