Http status codes Flashcards
100
Continue
The server has received the request headers and the client should proceed to send the request body.
200
OK
The request was successfully processed.
201
Created
The request was successful, and a new resource was created.
202
Accepted.
Indicates that a request has been accepted for processing, but processing has not been completed or may not have started.
204
No Content.
The request was successful; no content is returned.
205
Reset Content.
Indicates that the request has been successfully processed and the client should reset the document view.
206
Partial Content.
The response body contains the requested ranges of data as specified in the Range header of the request.
300
Multiple Choices.
Indicates that the request has more than one possible response The server should include content in the response that contains a list of resource metadata and URIs from which the user or user agent can choose.
301
Moved Permanently.
The requested resource has been permanently moved to a new URL.
302
Found.
The resource has temporarily moved to another URL.
304
Not Modified.
This response code is sent when the request is a conditional GET or HEAD request with an If-None-Match or an If-Modified-Since header and the condition evaluates to ‘false’. It confirms that the resource cached by the client is still valid and that the server would have sent a 200 OK response with the resource if the condition evaluated to ‘true’.
307
Temporary Redirect.
The method and the body of the original request are reused to perform the redirected request. In the cases where you want the request method to be changed to GET.
308
Permanent Redirect.
The request method and the body will not be modified by the client in the redirected request
400
Bad request.
The server could not process the request due to client-side error.
401
Unauthorized.
Authentication is required but has failed or not been provided.