query_jama_endpoint
Perform read-only GET requests to any Jama REST API endpoint. Retrieve data from a single page or all pages using pagination.
Instructions
Power-user escape hatch: GET any Jama REST endpoint (read-only).
``path`` is appended to ``{JAMA_URL}{API_PREFIX}`` (e.g. ``"/projects"``).
Only GET is ever issued; the client is read-only by design.
Args:
path: REST path beginning with '/', e.g. "/items/12345".
params: optional 'k1=v1&k2=v2' query string.
all_pages: if True, walk all pages and return a flat list of ``data``;
if False (default), return only the first page.
Returns:
{"path","data": <first-page data or flat list>}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| params | No | ||
| all_pages | No |