Enterprise CS needs to enable a beta feature for one tenant now โ not after tonight's deploy. Java SaaS services read entitlements from Kiponos:
var tenant = kiponos.path("tenants", tenantId);
if (!tenant.getBool("feature_analytics_v2")) return forbidden();
if (seatsUsed > tenant.getInt("seat_cap")) return upgradeRequired();
Support edits tenant folder in UI; next API call enforces new gates. Same pattern scales to thousands of tenants via profile structure.
Top comments (0)