
GET, POST, PUT... Common HTTP “verbs” in one figure.
This retrieves a resource from the server. It is idempotent. Multiple identical requests return the same result.
This updates or Creates a resource. It is idempotent. Multiple identical requests will update the same resource.
This is used to create new resources. It is not idempotent, making two identical POST will duplicate the resource creation.
This is used to delete a resource. It is idempotent. Multiple identical requests will delete the same resource.
The PATCH method applies partial modifications to a resource.
The HEAD method asks for a response identical to a GET request but without the response body.
The CONNECT method establishes a tunnel to the server identified by the target resource.
This describes the communication options for the target resource.
This performs a message loop-back test along the path to the target resource.
GET, POST, PUT... Common HTTP “verbs” in one figure.
This retrieves a resource from the server. It is idempotent. Multiple identical requests return the same result.
This updates or Creates a resource. It is idempotent. Multiple identical requests will update the same resource.
This is used to create new resources. It is not idempotent, making two identical POST will duplicate the resource creation.
This is used to delete a resource. It is idempotent. Multiple identical requests will delete the same resource.
The PATCH method applies partial modifications to a resource.
The HEAD method asks for a response identical to a GET request but without the response body.
The CONNECT method establishes a tunnel to the server identified by the target resource.
This describes the communication options for the target resource.
This performs a message loop-back test along the path to the target resource.