Response Codes
HTTP Status Codes
Status Code | Descriptions |
---|---|
2xx |
Success |
4xx |
Bad request sent to server |
5xx |
Server side error |
Status Code | Descriptions |
---|---|
200 |
Success The request was successfully completed. |
201 |
Created The request was a success and one or more resources have been created. |
400 |
Bad request The request cannot be performed. Usually because of malformed parameter or missing parameter. |
401 |
Unauthorized (Invalid AuthToken) Request was rejected because of invalid AuthToken. |
403 |
Forbidden The user does not have enough permission or possibly not an user of the respective organization to access the resource. |
404 |
URL Not Found The URL you’ve sent is wrong. It’s possible that the resource you’ve requested has been moved to another URL. |
405 |
Method Not Allowed The requested resource does not support the HTTP method used. For example, requesting List of all customers API with PUT as the HTTP method. |
406 |
Not Acceptable The requested response type is not supported by the client. |
429 |
Too many requests Too many requests within a certain time frame. To know more about api call limits. |
500 |
Server error |