curl -i https://example.com/api/users/123General success response for most successful HTTP requests. A `200 OK` response is cacheable by default.
Successful responses like 200 OK, 201 Created, and 204 No Content.
Successful responses like 200 OK, 201 Created, and 204 No Content.
curl -i https://example.com/api/users/123General success response for most successful HTTP requests. A `200 OK` response is cacheable by default.
curl -i -X POST https://example.com/api/users -H 'Content-Type: application/json' -d '{"name":"Ada"}'Common after a successful `POST` that creates a new resource.
curl -i -X POST https://example.com/api/jobs -d '{"task":"export"}'The request was accepted but may not be completed yet.
curl -i https://example.com/through-proxyIndicates the payload was modified from the origin server’s response by a proxy or intermediary.
curl -i -X DELETE https://example.com/api/users/123Common for updates or deletes when no body is necessary. MDN notes it is cacheable by default.
HTTP/1.1 205 Reset ContentInstructs the client to reset the document view after success.
curl -i -H 'Range: bytes=0-1023' https://example.com/video.mp4Used with `Range` requests for resumable downloads and media seeking.
PROPFIND /webdav/ HTTP/1.1Often associated with WebDAV operations returning per-resource results.
REPORT /webdav/collection HTTP/1.1Used in WebDAV multistatus contexts to avoid repetition.
GET /resource HTTP/1.1Used when the server fulfilled a request for a representation using instance manipulations.