What does HTTP status code 205 mean?
The 205 Reset Content status code indicates that the server successfully completed the request and requests that the client reset the interface view that sent the request (e.g., clearing a form).
When to use it in APIs
Rarely used in pure JSON APIs, but sometimes returned by endpoints handling form submissions to tell frontend applications to clear inputs.
How it compares to other codes
- 204 No Content: Responds with no body, but does not ask the client to reset any UI states.