Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HTTP_STATUS

HTTP response status codes used to indicate the success (or otherwise) of an HTTP request

see

https://developer.mozilla.org/en-US/docs/Web/HTTP/Status

Index

Enumeration members

Enumeration members

BAD_REQUEST

BAD_REQUEST: = 400

The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).

see

https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/400

INTERNAL_SERVER_ERROR

INTERNAL_SERVER_ERROR: = 500

This error response is a generic "catch-all" response. Usually, this indicates the server cannot find a better 5xx error code to response.

see

https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500

OK

OK: = 200

The HTTP 200 OK success status response code indicates that the request has succeeded. A 200 response is cacheable by default

see

https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200

Generated using TypeDoc