List all grantable add-on types. Available to any authenticated user
with entitlements resource access. Each item carries in_use, so the
delete action can be disabled for types that already have grants
instead of failing with 409.
GET
/entitlements/catalog
curl \
--request GET 'https://api.your-domain.com/api/entitlements/catalog' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "entitlement catalog retrieved successfully",
"data": {
"catalog": [
{
"id": "nsec-blacklist",
"display_name": "Blacklist",
"description": "IP and DNS blacklist feed for NethSecurity",
"scoped": false,
"kind": "service",
"system_type": "nsec",
"legacy_alias": "ng-blacklist",
"applies_to": "nethvoice",
"purchasable": true,
"in_use": true,
"created_at": "2026-07-01T10:00:00Z",
"updated_at": "2026-07-01T10:00:00Z"
}
]
}
}
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": {}
}