-
Notifications
You must be signed in to change notification settings - Fork 13
API Redmine Integration
To use any of the Redmine endpoints the following conditions must be met:
- "redmine" scope required
- login required
Get all the available information about all of the issues in a given Redmine project
Example:
GET /redmine/ticket/?project=ooi-ui-api-testing
project
- REQUIRED - Specify the name of the Redmine project of interest
Get all the available information about a specific issue
Example:
GET /redmine/ticket/id/?id=2290
id
- REQUIRED - Specify the issue id of the Redmine issue of interest
Get all the users associated with a specified project
Example:
GET /redmine/users/?project=ooinet-user-interface-development
project
- REQUIRED - Specify the name of the Redmine project of interest
Create a new Redmine issue
project_id
- REQUIRED - Specify the project that the issue belongs to
subject
- REQUIRED - Specify the subject of the issue
Update an existing Redmine issue
resource_id
- REQUIRED - Specify the issue id of the Redmine issue that needs updating
project_id
- REQUIRED - Specify the project id (number not string) of the Redmine project of interest
subject
- REQUIRED - Specify the subject of the issue
notes
- REQUIRED - Add user notes
- id
- assigned_to
- author
- created_on
- description
- done_ratio
- due_date
- estimated_hours
- priority
- project
- relations
- children
- journal
- start_date
- status
- subject
- time_entries
- tracker
- updated_on
- watchers