API's
Qvalia API server, base rules
All Qvalia endpoints follows the same HTTP code pattern, as follows:
Error Codes
200
- OKEverything worked as expected
204
- No contentEverything worked as expected, but we didn't find any data to return
400
- Invalid requestInvalid parameters from client
401
- UnauthorizedUnauthorized. Check your API key
403
- ForbiddenThe API key doesn't have permissions to perform the request.
404
- Not FoundThe requested resource does not exist. This can be either the URI, or query parameters.
409
- ConflictThe request cause some conflict, normally a duplicate
422
- Unprocessable EntityThe posted data is invalid, in the wrong format or missing
500
- Internal errorInternal Server Error (It's not you, it's us)
To POST
(create) any message in XML
format you'll provide a header as:
Or for POST
'ing JSON, you'd either omit the header, as JSON is the default, or provide:
For GET
'ing data you'll use the accept
header instead:
Last updated
Was this helpful?