create_project
Create new Todoist projects with customizable names, colors, parent projects, and favorite status to organize your tasks effectively.
Instructions
Create a new project in Todoist.
Args:
name: The name of the project
parent_id: Parent project ID (for nested projects)
color: Project color
is_favorite: Whether to mark as favorite
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| parent_id | No | ||
| color | No | ||
| is_favorite | No |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Color"
},
"is_favorite": {
"default": false,
"title": "Is Favorite",
"type": "boolean"
},
"name": {
"title": "Name",
"type": "string"
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
}
},
"required": [
"name"
],
"type": "object"
}