Errors
The API uses the following error codes:
| Error Code | Meaning |
|---|---|
| 400 | Bad Request -- Your request is invalid. |
| 401 | Unauthorized -- Your access token is wrong, or invalid. |
| 403 | Forbidden -- The requested resource is not available with the available authorization rights. |
| 404 | Not Found -- The specified resource could not be found. |
| 408 | Request Timeout -- The request took too long. Please, try again. |
| 415 | Unsupported Media Type -- The specified media is not supported (reserved to specific API services). |
| 429 | Too Many Requests -- You're sending too many requests! Slow down! |
| 500 | Internal Server Error -- We had a problem with our server. Please, try again later. |
| 503 | Service Unavailable -- We're temporarily offline for maintenance. Please, try again later. |
The error response contains the errors array. This array will usually be of length 1, but may contain more elements in specific cases. Each element of the array has the following parameters:
| Parameter | Type | Description |
|---|---|---|
| code | String | A short string describing the error. This is usually the human-readable version of the corresponding HTTP code. |
| message | String | A longer string describing the error. This usually contains more useful information about what happened. |
| additionalProperties | Object | In some cases, more data may be passed to the client. This data will be contained within this object. |