HTTP verbs
Where possible, API strives to use the appropriate HTTP verbs for each action.
Verb
Description
GET
Used for retrieving resources
POST
Used for creating resources
PATCH
Used for updating resources with partial JSON data
PUT
Used for replacing resources or collections
DELETE
Used for deleting resources
Was this helpful?