REST API Status Codes
To indicate successful execution or when error occur, we utilize standard HTTP codes.
myBiros REST APIs return 2xx when an API request succeeded. Status codes in the 400-500 range indicate failures.
2xx - Successful Responses
Status |
Message |
Description |
200 |
OK |
The request has succeeded. |
201 |
Created |
The request has succeeded and a new resource created. |
202 |
Accepted |
The request has succeeded but resource is not ready yet. |
4xx - Client Error Responses
Status |
Message |
Description |
401 |
Unauthorized |
The server has not been able to authenticate the request. |
403 |
Forbidden |
The service successfully authenticated the request but you do not have permission to access the requested resource. |
404 |
Not Found |
The server could not locate the requested resource. |
422 |
Unprocessable Content |
The server has not been able to process the content of the request. |
429 |
Too Many Requests |
For security reasons our API is subject to limitations regarding the number of concurrent requests and the rate at which requests can be submitted. |
5xx - Server Error Responses
Status |
Message |
Description |
500 |
Internal Server Error |
he server encountered an unexpected and unrecoverable error while processing the request. |
503 |
Service Unavailable |
The server could be under maintenance for an update. Will be back soon. |