ticktick_create_project
Create a new project in TickTick by specifying a name, color, and sharing preference. Simplify project setup and organization with straightforward API integration.
Instructions
Create a new project in TickTick
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Project color (hex code) | #3498db |
is_shared | No | Whether the project is shared | |
name | Yes | Name of the project |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"default": "#3498db",
"description": "Project color (hex code)",
"type": "string"
},
"is_shared": {
"default": false,
"description": "Whether the project is shared",
"type": "boolean"
},
"name": {
"description": "Name of the project",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}