Obtain an access token
Make aPOST request to the Token URL provided to you at onboarding. No request body is needed — pass your credentials as HTTP Basic Auth only.
Authorization header value is Basic followed by the Base64 encoding of {client_id}:{client_secret} (colon-separated). The grant type and scopes are pre-configured on your M2M client — no body parameters are required.
Token response
Compression
Request bodies may be sent as plain JSON or gzip-compressed JSON. Gzip is recommended for large payloads (many service lines) to reduce bandwidth and latency. Plain JSON (simplest — works in Postman and all HTTP clients):Content-Encoding: gzip is present, the body must be the gzip-compressed bytes of a valid JSON object. Content-Type remains application/json regardless — it describes the underlying data format, not the transport encoding.
Responses from the API are always gzip-compressed. Most HTTP clients (including Postman, curl with --compressed, and all common HTTP libraries) decompress responses automatically when they send Accept-Encoding: gzip.
Maximum body size: 10 MB.