quire.createTask
Create a task in a project or as a subtask. Provide project ID for root tasks or parent task OID for subtasks.
Instructions
Create a new task in a project or as a subtask of an existing task. To create a root task, provide a project ID/OID. To create a subtask, provide a parent task OID. To position a task relative to another, use createTaskAfter or createTaskBefore instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | The project ID/OID to create a root task, OR a parent task OID to create a subtask | |
| name | Yes | The task name/title (required) | |
| description | No | Task description in markdown format | |
| priority | No | Priority: -1 (low), 0 (medium), 1 (high), 2 (urgent) | |
| status | No | Status: 0 (to-do) to 100 (complete) | |
| due | No | Due date in ISO 8601 format (e.g., '2024-12-31') | |
| start | No | Start date in ISO 8601 format | |
| assignees | No | Array of user IDs to assign to this task | |
| tags | No | Array of tag IDs |