Back to all status codes
205
Reset Content
The server successfully processed the request and asks the client to reset the document view.
Common Causes
- •Form submission success
- •Clear form fields
- •Reset UI state
Code Examples
// Express.js - Reset form
app.post('/api/form', (req, res) => {
processForm(req.body);
res.status(205).send();
});