update_project
Modify project details like title, notes, schedule, deadline, tags, or status in the Things app. Use the tool to update or mark projects as completed/canceled by specifying the project ID.
Instructions
Update an existing project in Things
Args: id: ID of the project to update title: New title notes: New notes when: New schedule deadline: New deadline tags: New tags completed: Mark as completed canceled: Mark as canceled
Input Schema
Name | Required | Description | Default |
---|---|---|---|
canceled | No | ||
completed | No | ||
deadline | No | ||
id | Yes | ||
notes | No | ||
tags | No | ||
title | No | ||
when | No |
Input Schema (JSON Schema)
{
"properties": {
"canceled": {
"default": null,
"title": "Canceled",
"type": "boolean"
},
"completed": {
"default": null,
"title": "Completed",
"type": "boolean"
},
"deadline": {
"default": null,
"title": "Deadline",
"type": "string"
},
"id": {
"title": "Id",
"type": "string"
},
"notes": {
"default": null,
"title": "Notes",
"type": "string"
},
"tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
},
"when": {
"default": null,
"title": "When",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}