HTTP Methods

Method Meaning
GET Read one or more entities
POST Create new entity
PUT Update entity, overwriting all fields. When a field is not set in the request, it’s the same as if it was set with null value
PATCH Partially update entity using the JSON Patch format
DELETE Delete single entity
HEAD Same as GET, but the API returns an empty response
OPTIONS Returns allowed HTTP methods and Access-Control-* headers for CORS preflight request