Standard HTTP status code summary

HTTP Status Code

Text

Description

400

Bad request

The request was invalid, This happens mainly because of a malformed JSON or a violated rule.

401

Unauthorized

Authorization failed or not provided yet

404

Not Found

The requested resource could not be found

405

Method Not Allowed

The request method is known by the server but has been disabled and cannot be used. The two mandatory methods, GET and HEAD, must never be disabled and should not return this error code.

406

Not Acceptable

This response is sent when the webserver, after performing server-driven content negotiation, doesn't find any content that conforms to the criteria given by the user agent.

415

Unsupported Media Type

The media format of the requested data is not supported by the server, so the server is rejecting the request.

500

Internal Server Error

This happens because of an internal server error, reach out to the Product Specialist to get an immediate resolution.

All other HTTP code returned by the service has conventional meanings.

Please refer to the meaning of HTTP codes here -> https://developer.mozilla.org/en-US/docs/Web/HTTP/Status

Last updated