Retrieve organization usage reports

GET /usage-report

Returns aggregated usage reports for an organization

Query parameters

  • period string

Responses

  • 200 application/json

    200

    Hide response attribute Show response attribute object
    • usage array[object]

      Usage

      Hide usage attributes Show usage attributes object
      • from string

        Period Start Date

      • to string

        Period End Date

      • product string

        Product

      • variable string

        Variable

      • description string

        Description

      • quantity string

        Quantity

      • unit string

        Unit

GET /usage-report
curl \
 --request GET 'https://api-ch-gva-2.exoscale.com/v2/usage-report'
Response examples (200)
{
  "usage": [
    {
      "from": "string",
      "to": "string",
      "product": "string",
      "variable": "string",
      "description": "string",
      "quantity": "string",
      "unit": "string"
    }
  ]
}