wetrack_create_work_item
Create EPIC, STORY, TASK, or BUG work items in WeTrack projects with title, summary, priority, dates, assignees, and story points. Set parent, sprint, and rich-text description to capture complete issue details.
Instructions
Create a new work item — EPIC, STORY, TASK, or BUG.
Args: ticket_type: 'EPIC', 'STORY', 'TASK', or 'BUG'. title: Work item title (Epic Name / Story Name / Task Name / Bug Title). summary: Short summary of the work item. project_id: UUID of the project this belongs to. priority_id: Integer ID of the priority (get from wetrack_list_ticket_priorities). status_id: Status ID (defaults to 'To Do' if omitted). description: Optional rich text description (HTML supported). Required for BUG. assignees: List of user UUIDs to assign. First becomes primary assignee. start_date: ISO datetime string e.g. '2026-09-01T00:00:00Z'. end_date: ISO datetime string. Must be after start_date. tags: List of string tags. sprint_id: UUID of the sprint to assign this to (optional). story_points: Integer story points. Required for STORY, optional for TASK/BUG. bug_type: Bug category string. Required for BUG type only. parent_id: Integer ID of parent EPIC (for STORY/TASK/BUG only).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| title | Yes | ||
| summary | Yes | ||
| bug_type | No | ||
| end_date | No | ||
| assignees | No | ||
| parent_id | No | ||
| sprint_id | No | ||
| status_id | No | ||
| project_id | Yes | ||
| start_date | No | ||
| description | No | ||
| priority_id | Yes | ||
| ticket_type | Yes | ||
| story_points | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |