create_work_item
Create a new work item in a project. Specify name, assignees, priority, dates, and more to define tasks or issues.
Instructions
Create a new work item.
Args: project_id: UUID of the project name: Work item name (required) assignees: List of user IDs to assign to the work item labels: List of label IDs to attach to the work item type_id: UUID of the work item type point: Story point value description_html: HTML description of the work item description_stripped: Plain text description. Convenience only - it is wrapped into HTML and stored as description_html (Plane derives description_stripped server-side). Ignored if description_html is set. priority: Priority level (urgent, high, medium, low, none) start_date: Start date (ISO 8601 format) target_date: Target/end date (ISO 8601 format) sort_order: Sort order value is_draft: Whether the work item is a draft external_source: External system source name external_id: External system identifier parent: UUID of the parent work item state: UUID of the state estimate_point: Estimate point value type: Work item type identifier
Returns: Created WorkItem object
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| type | No | ||
| point | No | ||
| state | No | ||
| labels | No | ||
| parent | No | ||
| type_id | No | ||
| is_draft | No | ||
| priority | No | ||
| assignees | No | ||
| project_id | Yes | ||
| sort_order | No | ||
| start_date | No | ||
| external_id | No | ||
| target_date | No | ||
| estimate_point | No | ||
| external_source | No | ||
| description_html | No | ||
| description_stripped | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| name | No | ||
| type | No | ||
| point | No | ||
| state | No | ||
| parent | No | ||
| project | No | ||
| type_id | No | ||
| is_draft | No | ||
| priority | No | ||
| workspace | No | ||
| created_at | No | ||
| created_by | No | ||
| deleted_at | No | ||
| sort_order | No | ||
| start_date | No | ||
| updated_at | No | ||
| updated_by | No | ||
| archived_at | No | ||
| external_id | No | ||
| sequence_id | No | ||
| target_date | No | ||
| completed_at | No | ||
| estimate_point | No | ||
| external_source | No | ||
| description_html | No | ||
| description_binary | No | ||
| description_stripped | No |