todoist_add_project
Add a new project to Todoist with customizable options such as name, color, parent project ID, favorite status, and view style for better task organization and management.
Instructions
Create a new project in Todoist
Args: name: Name of the project color: Color of the project (optional) parent_id: ID of the parent project for creating sub-projects (optional) is_favorite: Whether the project should be marked as favorite (optional) view_style: View style of the project, either 'list' or 'board' (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | ||
is_favorite | No | ||
name | Yes | ||
parent_id | No | ||
view_style | No |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Color"
},
"is_favorite": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Favorite"
},
"name": {
"title": "Name",
"type": "string"
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
},
"view_style": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "View Style"
}
},
"required": [
"name"
],
"title": "todoist_add_projectArguments",
"type": "object"
}