redmine_api_request
Call any Redmine REST API endpoint, including version-specific and plugin endpoints, using HTTP methods and paths.
Instructions
Call any Redmine REST API endpoint. This is the escape hatch for the complete Redmine API surface, version-specific endpoints, and plugin endpoints. Paths are resolved under REDMINE_URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body for POST, PUT, PATCH, and DELETE requests. | |
| path | Yes | REST path, for example /issues.json, /issues/123.json, /projects/my-project/wiki/index.json, or a plugin endpoint. | |
| query | No | Query parameters. Array values are appended repeatedly. | |
| method | Yes | HTTP method. | |
| headers | No | Additional headers. Authentication and content headers are managed automatically unless explicitly overridden. | |
| raw_body_base64 | No | Optional raw request body encoded as base64. Use for non-JSON endpoints such as uploads. |