Grants grouped by the organization owning the systems, most active first, paginated and searchable by organization name. Restricted to the caller's hierarchy (the whole fleet for the owner organization / a Super Admin).
GET
/entitlements/report/organizations
curl \
--request GET 'https://api.your-domain.com/api/entitlements/report/organizations' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "report organizations retrieved successfully",
"data": {
"organizations": [
{
"organization_id": "akkbs6x2wo82",
"organization_name": "ACME S.r.l.",
"org_type": "reseller",
"systems": 12,
"active": 18,
"total": 20
}
],
"total": 130,
"page": 1,
"page_size": 10
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}
Response examples (500)
{
"code": 500,
"message": "internal server error",
"data": {}
}