GET
/
frontend
/
api
/
v1
/
statistics
/
usage
curl --request GET \
  --url https://{host}/frontend/api/v1/statistics/usage \
  --header 'Authorization: Bearer <token>'
{
  "aggregation": "no-aggregation",
  "period": {
    "from": null,
    "to": null
  },
  "users-usage": [
    {
      "aggregated-usage": [
        {
          "aggregation-time": "2023-11-07T05:31:56Z",
          "resources": {}
        }
      ],
      "user-id": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key Security (Header).

Query Parameters

date
object
aggregation
enum<string>
Available options:
no-aggregation,
yearly,
monthly,
weekly,
daily,
hourly,
minutely,
secondly
user-id
integer[]

Response

200
application/json

OK

The response is of type object.