HTTP Status Codes
This table provides the HTTP status codes.
Basic auth based web services calls
Status Code | Short Description | Description |
---|---|---|
200 | OK | The request is successful. Typically returned by a GET or a POST returning information. |
400 | Bad Request | The request contained an error. This status is returned by various methods when the data provided by the client - either as a part of the URI, query parameters or the body - does not meet the server requirements. |
401 | Unauthorized | You are not authorized to make this call. Either username or password is incorrect. |
404 | Not Found | The requested resource was not found. This will return response as <html><body>No service was found.</body></html> . |
405 | Method not allowed | The method requested is not allowed for the resource in the URI. |
406 | Not acceptable | The requested media type specified in the Accept header is not supported. |
409 | Conflict | The request could not be processed because of conflict in the request, such as the requested resource is not in the expected state, or the result of processing the request would create a conflict within the resource. |
412 | Precondition Failed | The server does not meet one of the preconditions that the requester put on the request header fields. |
415 | Unsupported Media Type | The request entity has a media type which the server or resource does not support. |
417 | Expectation Failed | The server cannot meet the requirements of the Expect request-header field. |
429 | Too many requests | Requests have exceeded agreed rate limit. |
500 | Forbidden | You are not allowed to access the requested resource. This will return response as Access to service is denied . |
500 | Internal Server Error | An internal error was encountered that prevents the server from processing the request and providing a valid response. |
501 | Not Implemented | The server does not support the functionality required to fulfill the request. |
503 | Service unavailable | The server cannot handle the request (because it is
overloaded or down for maintenance). This will return response
as {"message": "Service Unavailable"} . Wait,
then try again. |
504 | Gateway Timeout | The request has timed out. Try again with smaller payload of half the records. |