create_work_item
Add a new task to a project with assignees, labels, priority, dates, and other attributes.
Instructions
Create a new work item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | UUID of the project | |
| name | Yes | Work item name (required) | |
| assignees | No | List of user IDs to assign to the work item | |
| labels | No | List of label IDs to attach to the work item | |
| type_id | No | UUID of the work item type | |
| point | No | Story point value | |
| description_html | No | HTML description of the work item | |
| description_stripped | No | Plain text description (stripped of HTML) | |
| priority | No | Priority level (urgent, high, medium, low, none) | |
| start_date | No | Start date (ISO 8601 format) | |
| target_date | No | Target/end date (ISO 8601 format) | |
| sort_order | No | Sort order value | |
| is_draft | No | Whether the work item is a draft | |
| external_source | No | External system source name | |
| external_id | No | External system identifier | |
| parent | No | UUID of the parent work item | |
| state | No | UUID of the state | |
| estimate_point | No | Estimate point value | |
| type | No | Work item type identifier |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| type_id | No | ||
| created_at | No | ||
| updated_at | No | ||
| deleted_at | No | ||
| point | No | ||
| name | Yes | ||
| description_html | No | ||
| description_stripped | No | ||
| description_binary | No | ||
| priority | No | ||
| start_date | No | ||
| target_date | No | ||
| sequence_id | No | ||
| sort_order | No | ||
| completed_at | No | ||
| archived_at | No | ||
| is_draft | No | ||
| external_source | No | ||
| external_id | No | ||
| created_by | No | ||
| updated_by | No | ||
| project | No | ||
| workspace | No | ||
| parent | No | ||
| state | No | ||
| estimate_point | No | ||
| type | No |