HTTP Reference

HTTP 204 No Content

The request succeeded but there is no response body.

Common Causes

  • DELETE endpoint completed successfully.
  • PUT/PATCH endpoint chose empty success payload.
  • Webhook acknowledgement without body content.

Debugging Notes

  • Clients should not assume a JSON body exists on 204.
  • Double-check frontend parsers to avoid JSON parse errors on empty responses.

Example Response

{
  "status": 204
}

Related Tools