ERROR CODES

General HTTP return codes

Code
Description

204

Success

401

Invalid Authorization bearer token

4xx

A functional error occurred (see table below)

500

Internal server error

500 error code

Please note that when a 500 error is returned, the body of the response contains the error code and description in JSON-format. However, this error code always indicates a technical or network problem, so these should not be shown to end-users.

Example 500 error
{
"code": 1,
"description": "an error"
}

Detailed list of 4xx functional errors

Error code
Event

422

A wrong HTTP verb is used

403

A release is retrieved for which you have no access (anymore)

422

A release is transferred but the address is an invalid format

422

A release is transferred but the address is unknown

409

A release is transferred but the release is no longer valid

409

A release is transferred but you are not owner anymore

409

A release in revoked but you are already the owner

409

A release is revoked but the release is no longer valid

404

A pin is requested but the address is an invalid format

404

A pin is requested but the address is unknown

404

A pin is requested but the release is no longer valid

404

A pin is requested but you are not owner anymore

Last updated