• 100 Continue

    04-13-2020 22:10:32
    The server has received the request headers and the client should proceed to send the request body...
  • 101 Switching Protocols

    04-13-2020 22:11:00
    The requester has asked the server to switch protocols and the server has agreed to do so....
  • 102 Processing

    04-13-2020 22:11:19
    A WebDAV request may contain many sub-requests involving file operations, requiring a long time to complete the request. This code indicates that the server has received and is processing the request, but no response is available yet....
  • 200 OK

    04-13-2020 22:12:24
    Standard response for successful HTTP requests....
  • 201 Created

    04-13-2020 22:12:50
    The request has been fulfilled, resulting in the creation of a new resource....
  • 202 Accepted

    04-13-2020 22:13:15
    The request has been accepted for processing, but the processing has not been completed...
  • The server is a transforming proxy (e.g. a Web accelerator) that received a 200 OK from its origin, but is returning a modified version...
  • 204 No Content

    04-13-2020 22:14:24
    The server successfully processed the request and is not returning any content....
  • 205 Reset Content

    04-13-2020 22:15:31
    The server successfully processed the request, but is not returning any content. Unlike a 204 response, this response requires that the requester reset the document view...
  • 206 Partial Content

    04-13-2020 22:16:17
    The server is delivering only part of the resource (byte serving) due to a range header sent by the client. The range header is used by HTTP clients to e...
  • 207 Multi-Status

    04-13-2020 22:16:55
    The message body that follows is by default an XML message and can contain a number of separate response codes, depending on how many sub-requests were made....
  • 208 Already Reported

    04-13-2020 22:17:33
    he members of a DAV binding have already been enumerated in a preceding part of the (multistatus) response, and are not being included again....
  • 226 IM Used

    04-13-2020 22:18:01
    The server has fulfilled a request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance....
  • 300 Multiple Choices

    04-13-2020 22:18:51
    Indicates multiple options for the resource from which the client may choose....
  • 301 Moved Permanently

    04-13-2020 22:19:37
    This and all future requests should be directed to the given URI...
  • 302 Found

    04-13-2020 22:20:05
    Tells the client to look at (browse to) another URL. 302 has been superseded by 303 and 307. This is an example of industry practice contradicting the standard. The HTTP/1.0 specification (RFC 1945) required the client to perform a temporary re...
  • 303 See Other

    04-13-2020 22:20:39
    The response to the request can be found under another URI using the GET method. When received in response to a P...
  • 304 Not Modified

    04-13-2020 22:21:17
    Indicates that the resource has not been modified since the version specified by the request headers...
  • 305 Use Proxy

    04-13-2020 22:22:12
    The requested resource is available only through a proxy, the address for which is provided in the response. For security reasons, many HTTP clients (such as Mozilla Fi...
  • 307 Temporary Redirect

    04-13-2020 22:22:34
    In this case, the request should be repeated with another URI; however, future requests should still use the original URI. In contrast to how 302 was historically implemented, the request method is not allowed to be changed when reissuing the o...
  • 308 Permanent Redirect

    04-13-2020 22:22:57
    The request and all future requests should be repeated using another URI. 307 and 308 parallel the behaviors of 302 and 301, but do not allow the HTTP method to change. So, for example, submitting a form to a permanentl...
  • 400 Bad Request

    04-13-2020 22:23:19
    The server cannot or will not process the request due to an apparent client error (e.g., malformed request syntax, size too large, invalid request message framing, or deceptive request routing)....
  • 401 Unauthorized

    04-13-2020 22:23:48
    Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided. The response must include a WWW-Authenticate header field containing a challenge applicable to th...
  • 402 Payment Required

    04-13-2020 22:24:47
    Reserved for future use. The original intention was that this code might be used as part of some form of digital cash or...
  • 403 Forbidden

    04-13-2020 22:25:12
    The request contained valid data and was understood by the server, but the server is refusing action. This may be due to the user not having the necessary permissions for a resource or needing an account of some sort, or attempting a prohibited...
  • 404 Not Found

    04-13-2020 22:25:31
    The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible....
  • 405 Method Not Allowed

    04-13-2020 22:25:45
    A request method is not supported for the requested resource; for example, a GET request on a form that requires data to be presented via POST, or a P...
  • 406 Not Acceptable

    04-13-2020 22:26:00
    The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.[39]...
  • The client must first authenticate itself with the proxy....
  • 408 Request Timeout

    04-13-2020 22:26:39
    The server timed out waiting for the request. According to HTTP specifications: "The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later tim...
  • 409 Conflict

    04-13-2020 22:27:01
    Indicates that the request could not be processed because of conflict in the current state of the resource, such as an edit conflict between ...
  • 410 Gone

    04-13-2020 22:27:15
    Indicates that the resource requested is no longer available and will not be available again. This should be used when a resource has been intentionally removed and the resource should be purged. Upon receiving a 410 status code, the client sho...
  • 411 Length Required

    04-13-2020 22:27:35
    The request did not specify the length of its content, which is required by the requested resource....
  • 412 Precondition Failed

    04-13-2020 22:27:51
    The server does not meet one of the preconditions that the requester put on the request header fields....
  • 413 Payload Too Large

    04-13-2020 22:28:11
    The request is larger than the server is willing or able to process. Previously called "Request Entity Too Large....
  • 414 URI Too Long

    04-13-2020 22:28:37
    The URI provided was too long for the server to process. Often the result of too much data being encoded as a query-string of a GET request, ...
  • 415 Unsupported Media Type

    04-13-2020 22:28:52
    The request entity has a media type which the server or resource does not support. For example, the client up...
  • 416 Range Not Satisfiable

    04-13-2020 22:29:09
    The client has asked for a portion of the file (byte serving), but the server cannot supply that portion. For example, if the client asked for a part of ...
  • 417 Expectation Failed

    04-13-2020 22:29:25
    The server cannot meet the requirements of the Expect request-header field....
  • This code was defined in 1998 as one of the traditional IETF ...
  • 421 Misdirected Request

    04-13-2020 22:30:07
    The request was directed at a server that is not able to produce a response[56] (for example because of connection...
  • The request was well-formed but was unable to be followed due to semantic errors....
  • 423 Locked

    04-13-2020 22:30:48
    The resource that is being accessed is locked....
  • 424 Failed Dependency

    04-13-2020 22:31:25
    The request failed because it depended on another request and that request failed (e.g., a PROPPATCH)....
  • 425 Too Early

    04-13-2020 22:31:41
    Indicates that the server is unwilling to risk processing a request that might be replayed....
  • 426 Upgrade Required

    04-13-2020 22:31:59
    The client should switch to a different protocol such as TLS/1.0, given in the ...
  • 428 Precondition Required

    04-13-2020 22:32:14
    The origin server requires the request to be conditional. Intended to prevent the 'lost update' problem, where a client GETs a resource's state, modifies it, and PUTs it back to the server, when meanwhile a third party has modified the state on...
  • 429 Too Many Requests

    04-13-2020 22:32:34
    The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes...
  • The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large....
  • A server operator has received a legal demand to deny access to a resource or to a set of resources that includes the requested resource....