GET
/
frontend
/
api
/
v1
/
statistics
/
summary
curl --request GET \
  --url https://{host}/frontend/api/v1/statistics/summary \
  --header 'Authorization: Bearer <token>'
{
  "period": {
    "from": null,
    "to": null
  },
  "users-usage": [
    {
      "resources": [
        {
          "amount": null,
          "name": "<string>",
          "price": null,
          "title": null,
          "value": null,
          "value-type": null
        }
      ],
      "user-id": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key Security (Header).

Query Parameters

month
integer
Required range: 1 <= x <= 12
year
integer
Required range: 2024 <= x <= 2025
user-id
integer[]

Response

200
application/json

OK

The response is of type object.