HTTP 2xx Success Status Codes

Successful responses like 200 OK, 201 Created, and 204 No Content.

View
StandardDetailedCompact
Export
Copy the compact sheet, download it, or print it.
Download
`D` dense toggle · `C` copy all
## HTTP 2xx Success Status Codes
HTTP 200 OK
curl -i https://example.com/api/users/123

# Request succeeded

HTTP 201 Created
curl -i -X POST https://example.com/api/users -H 'Content-Type: application/json' -d '{"name":"Ada"}'

# Resource created successfully

HTTP 202 Accepted
curl -i -X POST https://example.com/api/jobs -d '{"task":"export"}'

# Accepted for asynchronous processing

HTTP 203 Non-Authoritative Information
curl -i https://example.com/through-proxy

# Metadata transformed by an intermediary

HTTP 204 No Content
curl -i -X DELETE https://example.com/api/users/123

# Request succeeded with no response body

HTTP 205 Reset Content
HTTP/1.1 205 Reset Content

# Client should reset document view

HTTP 206 Partial Content
curl -i -H 'Range: bytes=0-1023' https://example.com/video.mp4

# Partial body returned due to range request

HTTP 207 Multi-Status
PROPFIND /webdav/ HTTP/1.1

# Multiple resource statuses in one response

HTTP 208 Already Reported
REPORT /webdav/collection HTTP/1.1

# Resource already reported in DAV binding

HTTP 226 IM Used
GET /resource HTTP/1.1

# Delta encoding applied

Recommended next

No recommendations yet.