204: No Content
The 204 (No Content) status code indicates that the server has successfully fulfilled the request and that there is no additional content to send in the response payload body. In a PATCH or POST request, the response will not contain a response payload body, but can return a HTTP header, Location, containing the URL of the created resource.
Code | 204 |
Description | No Content. |
POST request with a response HTTP header
curl -X
POST "https://api.equinix.com/v2/tickets/1-188243137021/cancel"
-H "content-type: application/json"
-H "authorization: Bearer qwErtY8zyW1abcdefGHI"
-d '{
"reason": "Duplicate ticket was raised, and issue was already resolved. Refer to ticket id 1-188243137021.",
}'
This is an example of a successful HTTP header response.
Headers | |
---|---|
Key | Value |
Location | /tickets/1-211319530862 |