Grants grouped by shop tier (variable products only), paginated and searchable by add-on display name, add-on id or tier label. Restricted to the caller's hierarchy (the whole fleet for the owner organization / a Super Admin).
GET
/entitlements/report/tiers
curl \
--request GET 'https://api.your-domain.com/api/entitlements/report/tiers' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "report tiers retrieved successfully",
"data": {
"tiers": [
{
"entitlement": "nsec-blacklist",
"display_name": "Advanced Threat Shield",
"label": "16 - 30 device",
"count": 14
}
],
"total": 12,
"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": {}
}