Base URLs
OpenAPI listsservers for tooling and the interactive playground. Paths in this spec already include the /v1 prefix (for example POST /v1/request-money), so the server URL is the host base only—do not append /v1 to the OpenAPI server value.
Example create URL for sandbox:
https://{raas-backend-sandbox}/v1/request-money. Your integration contact provides the concrete hosts.
You can regenerate the exported spec from the API repo with OPENAPI_SERVER_URL set so servers reflects another deployment.
Common headers
Response format
- Success responses return JSON bodies defined in OpenAPI (
RequestMoneyResponse, status payloads, etc.). - Error responses use the shapes in OpenAPI for each status code. For example,
404onGET /v1/request-money/{referenceId}returnserror(stable machine-readable code such asnot_found) andmessage(human-readable text you can surface in support tooling or UX).401and422use their own DTOs (message, and for422adetailsobject).
HTTP status codes (surface summary)
Rate limits and pagination
This specification does not define global rate limits or cursor pagination for the current two-endpoint surface. If your deployment adds limits, your integration contact will document them.Where to go next
Use the Endpoints group in the API Reference tab forcreateRequest and getByReferenceId, including schemas, examples, and the interactive playground.