204 Status Code - No Content
In this section you will learn about 204 Status Code, its components and examples.
What is 204 status code?
The HTTP Status Code 204 is indicative of a successful request, but unlike the 200 OK
status, it signifies that there is no additional information to send back in the response body. This status code is part of the 2xx series of HTTP status codes, which confirm that a client's request was successfully received, understood, and accepted. The 204 No Content
status is typically returned when the server has successfully processed the request but there is no content to send in the response body.
Understanding 204 status code
Successful Request: The
204 No Content
status code indicates that the server has successfully fulfilled the request and there is no additional information to send back.
No Response Body: A distinctive characteristic of the
204 No Content
status code is that the response must not include a message body, meaning it's empty.
Why 204 status code?
The 204 No Content
status code serves as a refined success indicator when actions are processed successfully, but there is no relevant data to be returned to the client. It's a precise way to inform the client about the success of the operation, keeping the communication lightweight.
Benefits of 204 status code
Efficient Communication: The
204 No Content
status code is a mechanism for efficient communication between client and server, especially when no additional information needs to be conveyed.Bandwidth Conservation: By not including any additional data in the response body, the
204 No Content
status code helps in conserving bandwidth, which is beneficial in network-constrained environments.
How does 204 status code Work?
Client Sends a Request:
The client might send a request to delete a resource or to update a resource where the server does not need to send back any data.
Server Processes the Request:
The server processes the request, performing the necessary operations to fulfill the request.
Server Sends a Response:
The server sends a
204 No Content
response to the client, indicating the successful processing of the request without any additional data.
Components of 204 status code
A 204 No Content
response primarily consists of:
Status Line: The first line of the response, indicating the
204 No Content
status code.
Headers: Even though there's no message body, headers can still be included in the response to provide metadata about the request.
Example of 204 No Content
Deleting a Resource
Response:
In this example, the client sends a request to delete a user resource. The server processes the request, deletes the user, and returns a 204 No Content
status code to indicate the successful deletion of the resource.
Updating a Resource
An API for a banking system may return a 204 status code after a client application successfully requests an update to a customer's contact information. The server processes the request, makes the necessary changes, and returns a 204 No Content
status code, indicating that the operation was successful and there's no further information to send back.
PUT /api/customers/123/contact-info HTTP/1.1 Host: www.bankingsystem.com
Response:
HTTP/1.1 204 No Content
Logging Out a User
In a web application, a 204 No Content
status code is returned when a user logs out. The server successfully processes the logout request but does not need to send any data back to the client.
POST /api/users/logout HTTP/1.1 Host: www.webapplication.com
Response:
HTTP/1.1 204 No Content
Final Thoughts
The 204 No Content
status code is a meaningful part of the HTTP status code spectrum, signifying the successful processing of a request without returning any content.
Understanding the 204 No Content
status code is important for developers and anyone working with APIs or web services, as it provides a nuanced way of confirming the success of an operation without the need for additional data transmission.
Explore more from Akto
Blog
Be updated about everything related to API Security, new API vulnerabilities, industry news and product updates.
Events
Browse and register for upcoming sessions or catch up on what you missed with exclusive recordings
CVE Database
Find out everything about latest API CVE in popular products
Test Library
Discover and find tests from Akto's 100+ API Security test library. Choose your template or add a new template to start your API Security testing.
Documentation
Check out Akto's product documentation for all information related to features and how to use them.