create_work_package
Create a work package (epic, user story, task, bug) in an OpenProject project. Use type_id to set the type and parent_id to nest under an epic.
Instructions
Create a new work package (Epic, User Story, Task, Bug, etc.) in a project. Use list_project_types first to find the correct type_id, and pass parent_id to nest a User Story under an Epic.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subject | Yes | Title of the work package | |
| type_id | No | Type ID (e.g. Epic, User Story, Task). Get it from list_project_types | |
| due_date | No | Due date (YYYY-MM-DD) | |
| parent_id | No | Parent work package ID (e.g. the Epic a User Story belongs to) | |
| project_id | Yes | Project ID or identifier where the work package will be created | |
| start_date | No | Start date (YYYY-MM-DD) | |
| assignee_id | No | User ID to assign | |
| description | No | Description / details (supports Markdown) | |
| priority_id | No | Priority ID |