Errors
On API errors we return standard HTTP Status Codes. On success, we return either 200 or 201 status codes.
HTTP error status codes all methods return
Error response format
{
"error": enum, // API error type
"message": string // human-readable exception description
}{
"error": enum, // specific API error code
"message": string, // human-readable exception description
"field": string,
"value": string | number | boolean | null
}General possible errors for ALL methods
HTTP status code
API error code
Description
Last updated