...
Info |
---|
All API requests must use HTTPS scheme, any non-secure (HTTP) requests return a (HTTP 301) redirect to a HTTPS equivalent of the original request URL. |
HTTP
...
request methods
As per RESTful design patterns, our API implements the following HTTP verbsrequest methods:
GET
- used for retrieveing objectsPOST
- Used for creating objectsPUT
- Used for replacing objects or collectionsDELETE
- Used for deleting objects
...