HTTP 205 Reset Content tells the client that the request was successful and the client should reset the document view that caused the request. This is useful for form submissions — the server confirms receipt and the client should clear the form fields.
The server processed a form submission and instructs the browser to reset the form to its initial state.
Ensure the client application resets the form or document view when receiving a 205 response.
205 is rarely used in practice. Most applications use 200 with a response body or 204 for no-content success.