add_project
Create and organize a new project in the Things app by specifying its title, notes, schedule, deadline, tags, area, and initial todos.
Instructions
Create a new project in Things
Args: title: Title of the project notes: Notes for the project when: When to schedule the project deadline: Deadline for the project tags: Tags to apply to the project area_id: ID of area to add to area_title: Title of area to add to todos: Initial todos to create in the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
area_id | No | ||
area_title | No | ||
deadline | No | ||
notes | No | ||
tags | No | ||
title | Yes | ||
todos | No | ||
when | No |
Input Schema (JSON Schema)
{
"properties": {
"area_id": {
"default": null,
"title": "Area Id",
"type": "string"
},
"area_title": {
"default": null,
"title": "Area Title",
"type": "string"
},
"deadline": {
"default": null,
"title": "Deadline",
"type": "string"
},
"notes": {
"default": null,
"title": "Notes",
"type": "string"
},
"tags": {
"default": null,
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"title": {
"title": "Title",
"type": "string"
},
"todos": {
"default": null,
"items": {
"type": "string"
},
"title": "Todos",
"type": "array"
},
"when": {
"default": null,
"title": "When",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}