Use this method to get info about an error code.
For the full technical reference, see the OpenAPI specification.
GET /api/utility/errors| Name | Required | Description |
|---|---|---|
Content-Type | Yes | Must be application/json. |
| Parameter | Type | Required | Description |
|---|---|---|---|
code | integer | Yes | The error code to look up. |
language | string | Yes | Language for the error text. ISO 639-1 alpha-2: EN, IT, DE, ES, RO. ISO 639-2 alpha-3 codes (ENG, ITA, DEU, SPA, RON) are accepted for legacy compatibility but will not be extended to new languages. |
GET /api/utility/errors?code=1027&language=EN200 — Error found
{
"errorCode": 1027,
"errorLanguage": "ENG",
"errorLanguage2": "EN",
"errorText": "The file is duplicated"
}If the error code does not exist, the response is HTTP 200 with errorText: "Unspecified error".
For authentication errors, see Authentication.
For the full list of errors, see Methods to manage errors.