Common Errors
The 200 series
- OKHTTP 200The API request is successful. 
- CreatedHTTP 201Message: record added. 
 Request fulfilled for record insertion.
- AcceptedHTTP 202The request has been accepted. Generally, the server takes time to complete the process. 
- No ContentHTTP 204There is no content available for the request. 
- Multi-StatusHTTP 207The API is partially successful. It shows the record added (for successful insertions) and the error message for unsuccessful insertions. 
 Request fulfilled for multiple records insertion.
The 300 series
- Not ModifiedHTTP 304The requested resource has not been modified after the time mentioned in the "If-Modified-Since" header in a GET API. 
The 400 series
- BAD REQUESTHTTP 400The request or the authentication considered is invalid. 
- INVALID_DATAHTTP 400The ID given is invalid. 
- AUTHORIZATION ERRORHTTP 401Invalid API key provided. 
- FORBIDDENHTTP 403No permission to do the operation. 
- NOT FOUNDHTTP 404Invalid request. 
- METHOD NOT ALLOWEDHTTP 405The specified method is not allowed. 
- REQUEST ENTITY TOO LARGEHTTP 413The server did not accept the request while uploading a file, since the limited file size has exceeded. 
- UNSUPPORTED MEDIA TYPEHTTP 415The server did not accept the request while uploading a file, since the media/ file type is not supported. 
- TOO MANY REQUESTSHTTP 429Number of API requests for the 24 hour period is exceeded or the concurrency limit of the user for the app is exceeded. 
- INTERNAL SERVER ERRORHTTP 500Generic error that is encountered due to an unexpected server error.