Redmine
A project management and issue tracking system that provides a web-based platform for managing projects, tracking tasks, and handling various types of project-related activities.
- Category
- Utilities
- Pack
- Redmine
Configuration parameters
- url — Server URL (e.g., https://1.1.1.1) (required)
- credentials — (required)
- project_id — Project Id
- insecure — Trust any certificate (not secure)
Commands (13)
- redmine-custom-field-list — Retrieve a list of all custom fields.
- redmine-issue-create — - Create a new issue. - The status of the newly created issue will be set to the default status of the Redmine instance. - When attaching a file to an issue, include the entry ID in the request as file_entry_id=entry ID. - To create a custom field, navigate to the server URL with administrative privileges, click **Administration** (located at the top left), select **Custom fields**,' and then proceed to create a new custom field. Once created, you can add values as needed. - To create a category/version, navigate to the server URL -> Click on the Settings (top bar) -> Versions tab and Issue categories tab.
- redmine-issue-delete — Delete an issue by its ID.
- redmine-issue-get — Show an issue by ID.
- redmine-issue-list — Display a list of issues.
- redmine-issue-update — Update an existing issue. When attaching a file to an issue, include the entry ID in the request as file_entry_id=the ID you created. To create a custom field, navigate to the server URL with administrative privileges, click **'Administration** (located at the top left), select **Custom fields**, and proceed to create a new custom field. Once created, you can add values as needed.
- redmine-issue-watcher-add — Add a watcher to the specified issue. Ensure that the watcher_id is accurate, as the Redmine API does not raise an exception for an incorrect watcher_id.
- redmine-issue-watcher-remove — Remove a watcher of an issue.
- redmine-priority-id-list — Returns a list of priorities (priority name to priority id).
- redmine-project-list — Retrieve a list of all projects, including both public and private ones that the user has access to.
- redmine-status-id-list — Returns a list of statuses (status name to status id).
- redmine-tracker-id-list — Returns a list of trackers (tracker name to tracker id).
- redmine-user-id-list — - Retrieve a list of users with optional filtering options. - This command requires admin privileges in your Redmine account.