Specification files
| File | Purpose |
|---|---|
/openapi.oms.en.json | English REST API reference used by the English docs |
/openapi.oms.vi.json | Vietnamese REST API reference used by the Vietnamese docs |
Use with AI tools
Give the model the OpenAPI file plus this instruction:Client checklist
- Find the operation by 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 defensively because error payloads can vary by failure point.

