205 Reset Content

The request succeeded and the client should reset the document view that sent it, typically clearing a form.

Status

HTTP/1.1 205 Reset Content

Details

205 is 204 with an instruction attached: succeed, and clear the input that produced the request so the user can enter another entry. It was designed for data-entry workflows where the same form is submitted repeatedly.

Browser support for the reset behavior is inconsistent and almost all modern applications clear forms in JavaScript instead, so the code is seldom used. Like 204 it must not carry a body.

Common causes

Usage notes

For clients

For servers

Examples

Submitting a data-entry form

HTTP request

POST /entry/submit HTTP/1.1
Host: intranet.example.com
Content-Type: application/x-www-form-urlencoded

sample_id=A-1183&value=42

HTTP response

HTTP/1.1 205 Reset Content

Specifications

See also