Requests

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 VerbDescription
GET          Used for resource retrieval.
POSTResource creation or any other non-idempotent operation.
PUTUsed for idempotent operation as collection replacement etc.
PATCHUpdate resource. Use {"key": "value"} for property update or create and {"key": null} for delete.
DELETEDeletes a resource.