Get license and feature status
This endpoint reports the current status of the Enterprise Edition license and lists all Enterprise features currently in use. Use this endpoint to monitor license compliance and detect if any Enterprise features are active without a valid license.
GET
/v1/features/enterprise
curl \
--request GET 'http://localhost:9644/v1/features/enterprise'
Response examples (200)
{
"license_status": "valid",
"violation": true,
"features": [
{
"name": "string",
"enabled": true
}
]
}