Update the display fields (display_name, description) of a catalog item. The id and scoped flag are immutable. Only the owner organization or a Super Admin can manage the catalog.
PUT
/entitlements/catalog/{id}
curl \
--request PUT 'https://api.your-domain.com/api/entitlements/catalog/nsec-blacklist' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"display_name":"Blacklist","description":"IP and DNS blacklist feed for NethSecurity","purchasable":false}'
Request examples
{
"display_name": "Blacklist",
"description": "IP and DNS blacklist feed for NethSecurity",
"purchasable": false
}
Response examples (200)
{
"code": 200,
"message": "catalog item updated successfully",
"data": {
"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 (400)
{
"code": 400,
"message": "validation failed",
"data": {
"type": "validation_error",
"errors": [
{
"key": "username",
"message": "required",
"value": "string"
}
]
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}
Response examples (404)
{
"code": 400,
"message": "validation failed",
"data": {
"type": "validation_error",
"errors": [
{
"key": "username",
"message": "required",
"value": "string"
}
]
}
}
Response examples (500)
{
"code": 500,
"message": "internal server error",
"data": {}
}