ticktick_create_project_from_template
Generate a new project in TickTick using a predefined template, specifying a project name and optional task customization for streamlined project setup and management.
Instructions
Create project from a template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customize_tasks | No | Allow task customization during creation | |
project_name | Yes | Name for the new project | |
template_id | Yes | ID of the template to use |
Input Schema (JSON Schema)
{
"properties": {
"customize_tasks": {
"default": false,
"description": "Allow task customization during creation",
"type": "boolean"
},
"project_name": {
"description": "Name for the new project",
"type": "string"
},
"template_id": {
"description": "ID of the template to use",
"type": "string"
}
},
"required": [
"template_id",
"project_name"
],
"type": "object"
}