Overview#
HTTP 200 is defined in RFC 7231 , section 6.3.1: 200 OK, as a HTTP Status Code that indicates the HTTP Request was succeeded.The request has succeeded. The meaning of a success varies depending on the HTTP Method:
- HTTP GET: The resource has been fetched and is transmitted in the message body.
- HTTP HEAD: The entity headers are in the message body.
- HTTP POST: The resource describing the result of the action is transmitted in the message body.
- HTTP TRACE: The message body contains the request message as received by the server
- HTTP DELETE: The resource was deleted or a HTTP 204 No Content or a HTTP 201 Created when the resource is uploaded for the first time
- HTTP PUT: The request succeeded. May be a HTTP 204 No Content or a HTTP 201 Created when the resource is uploaded for the first time