Specification files
The published REST API currently contains 47 unique HTTP operations.
Use with AI tools
Give the model the OpenAPI file plus this instruction:Authentication rules
- Most REST endpoints use
Authorization: Bearer <token>. - session endpoints that explicitly document session auth use
x-session-token. - Do not send both credentials unless the endpoint documentation says it accepts both.
Implementation checklist
- Find the operation by
operationId, method, or path. - Read every path, query, header, and body parameter.
- Build the request from typed fields, not string concatenation where a structured client is available.
- Parse the success response according to the documented schema.
- Parse error responses as JSON, Problem Details, or text because gateway/backend errors can vary.

