redmine_create_issue
Create and manage Redmine issues by specifying title, description, project, tracker, priority, parent, and optional file attachments.
Instructions
Create a new Redmine issue with specified title and description. Can optionally attach files by providing file paths.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Issue title/subject | |
| parent_id | No | Parent issue ID (for creating subtasks) | |
| file_paths | No | Optional: Array of absolute file paths to attach to the issue | |
| project_id | No | Project ID or identifier to create issue in. If not specified, uses default project from config | |
| tracker_id | No | Tracker ID (1=Bug, 2=Feature, 3=Support). Default: 2 | |
| description | Yes | Issue description | |
| priority_id | No | Priority ID (1=Low, 2=Normal, 3=High, 4=Urgent, 5=Immediate). Default: 2 |