HTTP Methods

The APIs may utilize the following five HTTP methods in order to provide users with Create-Read-Update-Delete (CRUD) functionality. Note that not all APIs support all methods.

GET

Return a read-only representation of the selected resource(s) in the response body.

HEAD

Read-only check for resource existence and/or modification. Does not return a response body.

POST

Create resources or submit data to be processed by a resource operation.

PATCH

Modify existing resource(s).

DELETE

Remove/deactivate existing resource.