HTTP 201 status code Last Updated : 01 Dec, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report What is HTTP ? HTTP stands for Hyper Text Transfer Protocol. Using this protocols, the clients communicate with server and vice versa. This concept is the core of internet, since it was created in 1990. HTTP is basic yet powerful file transfer protocol. Features of HTTP: HTTP is connectionless: This means that HTTP needs a continuous connection with the server to transfer files. In this case, the client sends the request and that request is processed by the server and a response is sent back. The connection is established when the request is sent and connection ends once the response is returned, after this neither the client nor the server is aware of each other.HTTP is stateless: It is called stateless because once the request and response cycle between the client and the server is finished neither the server nor the client retain the information between different requests across multiple websites. Simply what happens within a request and response cycle won't affect any request in the future since all the requests are independent of each other.HTTP is independent of type of file used: HTTP can be used to transfer any type of data, provided that the client and the server can handle that format of data. HTTP status codes: The HTTP status codes are used to indicate that any specific HTTP request has successfully completed or not. The HTTP status codes are categorized into five sections those are listed below: Informational responses (100–199)Successful responses (200–299)Redirects (300–399)Client errors (400–499)Server errors (500–599) HTTP response codes: As we have already seen, the workflow of a HTTP request, we know that the client sends the request and the server sends the response which is generally a JSON data or HTML, CSS files. This response is accompanied by a response status code that helps us to classify the type of response received and the status of the request processed. What is HTTP response code 201: The response code of the format 2XX indicates success.The response code of 201 is hence a success status code that indicates that a new resource has been created. The new resource is effectively created before this response code is sent back and the new resource is returned to the body of the message. Its location being either the URL of the request, or the content of the location header. It is used most of the time with a POST request to create new users or articles using a web form. Comment More infoAdvertise with us Next Article Servlet - HTTP Status Codes H haridarshanc Follow Improve Article Tags : TechTips HTTP- response-status-codes Similar Reads JSP - HTTP Status Codes When the Client makes any requests to the server, the Status Codes are issued by the server as a response to the client's request. So, in an application, we have the client and the server architecture. The server is the part that holds the particular web service or an API. The client is the actor wh 4 min read What are HTTP Status Codes ? HTTP Protocol is used everywhere from the server page to each service communication, deploying service to monitoring service. HTTP codes give an extension of HTTP protocol to debug network problems using curl, telnet able to check server availability, service responses HTTP status code is used for s 8 min read Servlet - HTTP Status Codes For each HTTP request and HTTP response, we have messages. The format of the HTTP request and HTTP response messages are similar and will have the following structure â An initial status line + CRLFCRLF = Â ( Carriage Return + Line Feed i.e. New Line )Zero or more header lines + CRLFA blank line, i.e 4 min read HTTP status codes | Client Error Responses The browser and the site server have a conversation in the form of HTTP status codes. The server gives responses to the browserâs request in the form of a three-digit code known as HTTP status codes. The categorization of HTTP status codes is done in five sections which are listed below. Information 4 min read HTTP status codes | Redirection Responses HTTP status codes are a conversation between your browser and the site server. The server gives responses to the browser's request in the form of a three-digit code known as HTTP status codes. The HTTP status codes are categorized into five sections which are listed below. Informational responses (1 2 min read HTTP status codes | Server Error Responses HTTP status codes is a conversation between your browser and the site server. The server gives responses to the browser's request in the form of a three-digit code known as HTTP status codes. Categories of HTTP status codes are. Informational responses (100â199) Successful responses (200â299) Redire 3 min read Like