HTTP Status codes

List of all HTTP status codes used by API

Successful status codes

HTTP StatusDescription

200

OK

Operation was successful. Payload is located in response body.

201

Created

Create operation was successful. Payload is located in response body.

202

Accepted

Operation request is accepted. The task will continue in background.

204

No Content

Operation was successful. There is no payload in response body.

Error status codes

Statuses in range 400-499 are considered as client errors, range 500-599 represents server errors.

HTTP StatusError modelDescription

400

Bad Request

Request is invalid or contains invalid data.

401

Unauthorized

User is not logged in, or user authentication has failed (invalid credentials).

403

Forbidden

User is logged in but does not have sufficient access rights, or operation itself is forbidden.

404

Not found

Resource is not found.

423

Locked

Resource is locked (temporarily used by another part of application).

500

Internal server error

Error occured on server side.

Last updated