ticktick_bulk_create_from_template
Enable mass task creation in TickTick by using a template to generate multiple tasks with structured data, ensuring consistent task formatting and efficient workflow automation.
Instructions
Mass task creation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apply_template_defaults | No | Use template defaults for missing fields | |
bulk_data | Yes | Array of task data for bulk creation | |
notify_assignees | No | Send notifications to assignees | |
template_id | Yes | Template to use for bulk creation |
Input Schema (JSON Schema)
{
"properties": {
"apply_template_defaults": {
"default": true,
"description": "Use template defaults for missing fields",
"type": "boolean"
},
"bulk_data": {
"description": "Array of task data for bulk creation",
"items": {
"properties": {
"assignee_id": {
"type": "string"
},
"custom_fields": {
"type": "object"
},
"due_date": {
"type": "string"
},
"project_id": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"type": "array"
},
"notify_assignees": {
"default": true,
"description": "Send notifications to assignees",
"type": "boolean"
},
"template_id": {
"description": "Template to use for bulk creation",
"type": "string"
}
},
"required": [
"template_id",
"bulk_data"
],
"type": "object"
}