Raw Jira REST API call
jira_apiCall any Jira REST API endpoint by specifying method, path under /rest/, and optional query or JSON body. Returns raw JSON response.
Instructions
Call any Jira REST API endpoint not covered by a dedicated tool. Path must start with /rest/ and stay under it (e.g. '/rest/api/3/issue/PROJ-1/names' or '/rest/agile/1.0/board/1'). Query params go in query, JSON payload in body. Returns the raw JSON response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body (POST/PUT) | |
| path | Yes | API path starting with /rest/, e.g. /rest/api/3/issue/PROJ-1 | |
| query | No | Query string parameters | |
| method | Yes | HTTP method |