Http Status Codes
HTTP Status Code refers to a 3-digit code that is part of a server's HTTP Response. The first digit of the code describes the category in which the response falls.
Code |
Status |
Description |
100 |
Continue |
The server has received
the initial part of a request and is ready to proceed. |
102 |
Processing |
Received the request
and is continuing with the process. |
200 |
Ok |
The request was
successfully completed. |
201 |
Created |
A new resource was
successfully created. |
202 |
Accepted |
The request has been
accepted for processing. |
204 |
No Content |
The server successfully
processed a request but has no data to return in the response. |
302 |
Found |
The requested resource
has been temporarily moved to a different URL. |
400 |
Bad Request |
The request was
invalid. |
401 |
Unauthorized |
The request did not
include an authentication token or the authentication token was expired. |
402 |
Payment Required |
The request cannot be
processed because payment is required to fulfill the request. |
403 |
Forbidden |
The client did not have
permission to access the requested resource. |
404 |
Not Found |
The requested resource
was not found. |
405 |
Method Not Allowed |
The HTTP method in the
request was not supported by the resource. |
423 |
Locked |
The resource is locked
and the request cannot be completed. |
500 |
Internal Server Error |
The request was not
completed due to an internal error on the server side. |
503 |
Service Unavailable |
The server was
unavailable. |