Error codes
You can use the code to find out the result of the operation. The error codes supported in the current version of the API are listed below.
|
HTTP code |
ID |
Description |
|
401 |
0 |
Unauthorized user. |
|
400 |
|
|
|
409 |
2 |
Conflict. |
|
403 |
3 |
Access denied. |
|
500 |
5 |
Internal service error. |
|
404 |
6 |
Object or resource not found. |
|
429 |
7 |
Exceeded request quota. |
|
406 |
8 |
Invalid header. |
|
415 |
9 |
Unsupported data type. |
|
503 |
13 |
Service temporarily unavailable. Repeat the request later. |
If an error occurred while performing the operation, the result has the following format:
JSON
{
"errors": [
{
"detail": "{string}",
"title": "{string}",
"id":"{string}"
}
]
}
| Parameter | Description |
|---|---|
detail |
Error description. |
title |
Text description. |
id |
Error ID. |