create_issue
Create new issues or tickets in Redmine projects to track bugs, features, or tasks with details like priority, assignee, and deadlines.
Instructions
Create a new issue/ticket in Redmine. Returns the created issue with its ID and details.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | The ID of the project to create the issue in | |
| subject | Yes | The title/subject of the issue | |
| description | No | Detailed description of the issue | |
| tracker_id | No | The tracker type ID (e.g., Bug, Feature, Support) | |
| status_id | No | The status ID (e.g., New, In Progress, Resolved) | |
| priority_id | No | The priority ID (e.g., Low, Normal, High, Urgent) | |
| assigned_to_id | No | The user ID to assign the issue to | |
| start_date | No | Start date in YYYY-MM-DD format | |
| due_date | No | Due date in YYYY-MM-DD format | |
| done_ratio | No | Percentage of completion (0-100) | |
| fixed_version_id | No | The ID of the target version (milestone) |