All API requests must be made over HTTPS with base URL https://api.amio.io/v1/
. Data is sent and received in JSON format. Where possible, Amio API leverages appropriate HTTP verbs for requests.
HTTP Verb | Description |
---|---|
GET | Used for resource retrieval. |
POST | Resource creation or any other non-idempotent operation. |
PUT | Used for idempotent operation as collection replacement etc. |
PATCH | Update resource. Use {"key": "value"} for property update or create and {"key": null} for delete. |
DELETE | Deletes a resource. |