HTTP Methods Reference
Reference for HTTP methods: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS.
GETSafe: βIdempotent: β
Retrieve a resource. No body. Results may be cached.
GET /users/123POSTSafe: βIdempotent: β
Create a new resource or trigger an action. Has body.
POST /usersPUTSafe: βIdempotent: β
Replace an entire resource. Idempotent.
PUT /users/123PATCHSafe: βIdempotent: β
Partial update of a resource.
PATCH /users/123DELETESafe: βIdempotent: β
Delete a resource.
DELETE /users/123HEADSafe: βIdempotent: β
Like GET but returns only headers, no body.
HEAD /users/123OPTIONSSafe: βIdempotent: β
Describes communication options for the target resource.
OPTIONS /usersCONNECTSafe: βIdempotent: β
Establishes a tunnel (used for HTTPS via proxy).
CONNECT example.com:443TRACESafe: βIdempotent: β
Performs a loopback test (debugging).
TRACE /pathRelated Tools
About this tool
Reference for HTTP methods: GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS.