Yahoo India Web Search

Search results

  1. Jun 27, 2024 · The HTTP 201 Created success status response code indicates that the request has succeeded and has led to the creation of a resource.

    • View in English

      HTTP response status codes indicate whether a specific HTTP...

  2. Dec 1, 2020 · Learn what HTTP 201 means and when it is used. It is a success status code that indicates that a new resource has been created and returned to the client.

    • Overview
    • Information responses
    • Successful responses
    • Redirection messages
    • Client error responses
    • Server error responses
    • Browser compatibility
    • See also

    HTTP response status codes indicate whether a specific HTTP request has been successfully completed. Responses are grouped in five classes:

    1.Informational responses (100 – 199)

    2.Successful responses (200 – 299)

    3.Redirection messages (300 – 399)

    4.Client error responses (400 – 499)

    5.Server error responses (500 – 599)

    100 Continue

    This interim response indicates that the client should continue the request or ignore the response if the request is already finished.

    101 Switching Protocols

    This code is sent in response to an Upgrade request header from the client and indicates the protocol the server is switching to.

    102 Processing (WebDAV)

    This code indicates that the server has received and is processing the request, but no response is available yet.

    200 OK

    The request succeeded. The result meaning of "success" depends on the HTTP method:

    •GET: The resource has been fetched and transmitted in the message body.

    •HEAD: The representation headers are included in the response without any message body.

    •PUT or POST: The resource describing the result of the action is transmitted in the message body.

    •TRACE: The message body contains the request message as received by the server.

    300 Multiple Choices

    The request has more than one possible response. The user agent or user should choose one of them. (There is no standardized way of choosing one of the responses, but HTML links to the possibilities are recommended so the user can pick.)

    301 Moved Permanently

    The URL of the requested resource has been changed permanently. The new URL is given in the response.

    302 Found

    This response code means that the URI of requested resource has been changed temporarily. Further changes in the URI might be made in the future. Therefore, this same URI should be used by the client in future requests.

    400 Bad Request

    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).

    401 Unauthorized

    Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.

    402 Payment Required Experimental

    This response code is reserved for future use. The initial aim for creating this code was using it for digital payment systems, however this status code is used very rarely and no standard convention exists.

    500 Internal Server Error

    The server has encountered a situation it does not know how to handle.

    501 Not Implemented

    The request method is not supported by the server and cannot be handled. The only methods that servers are required to support (and therefore that must not return this code) are GET and HEAD.

    502 Bad Gateway

    This error response means that the server, while working as a gateway to get a response needed to handle the request, got an invalid response.

    BCD tables only load in the browser with JavaScript enabled. Enable JavaScript to view data.

    •List of HTTP status codes on Wikipedia

    •IANA official registry of HTTP status codes

  3. People also ask

  4. Aug 2, 2023 · What is '201 Created'? Learn how to use and/or fix this HTTP status code, with free examples and code snippets.

  5. Nov 6, 2023 · Learn what HTTP Status 201 means and how to use it in your API requests and responses. See examples, headers, and how to avoid the lost update problem with ETags.

  6. Jul 26, 2023 · Learn what HTTP Status Code 201 means and how it is used in web communication. Find out when and how to use it in web application development and see examples of its usage.

  7. Learn what 201 Created means in HTTP, when to use it, and how to handle it in web development and API design. See examples of 201 Created responses and how to use the Location header to access the new resource.