Reports used and licensed figures for entitlements, entitlement offers and catalog features.
const url = 'https://example.com/api/v1/provision/admin/platform-quota/usage';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/provision/admin/platform-quota/usageResponses
Section titled “Responses”One entry per enforced count-based quota.
The tenant’s count-based Provision quotas: entitlements, entitlement offers and catalog features.
object
One entry per enforced quota.
One count-based platform quota: how many the tenant holds now, and how many its subscription allows. int QuotaUsageDto.Used is produced by the same count the enforcing gate performs, so a figure shown from it cannot disagree with the refusal the tenant would receive.
object
The numeric license feature this quota is enforced on, e.g. entitlements.active.
Display name from the platform feature catalog.
Instances currently counted against the quota.
The licensed ceiling. Zero when the caller bypasses licensing (sysadmin, or a token holding
no-license-required) — there is no cap to render in that case, so treat it as unlimited
rather than as a cap of nought.
Whether one more instance would still be within the licensed ceiling.
The refusal the gate would produce, or empty while there is room.
The tenant’s count-based Provision quotas: entitlements, entitlement offers and catalog features.
object
One entry per enforced quota.
One count-based platform quota: how many the tenant holds now, and how many its subscription allows. int QuotaUsageDto.Used is produced by the same count the enforcing gate performs, so a figure shown from it cannot disagree with the refusal the tenant would receive.
object
The numeric license feature this quota is enforced on, e.g. entitlements.active.
Display name from the platform feature catalog.
Instances currently counted against the quota.
The licensed ceiling. Zero when the caller bypasses licensing (sysadmin, or a token holding
no-license-required) — there is no cap to render in that case, so treat it as unlimited
rather than as a cap of nought.
Whether one more instance would still be within the licensed ceiling.
The refusal the gate would produce, or empty while there is room.
Examplegenerated
{ "quotas": [ { "featureCode": "example", "name": "example", "used": 1, "limit": 1, "canAddMore": true, "message": "example" } ]}The tenant’s count-based Provision quotas: entitlements, entitlement offers and catalog features.
object
One entry per enforced quota.
One count-based platform quota: how many the tenant holds now, and how many its subscription allows. int QuotaUsageDto.Used is produced by the same count the enforcing gate performs, so a figure shown from it cannot disagree with the refusal the tenant would receive.
object
The numeric license feature this quota is enforced on, e.g. entitlements.active.
Display name from the platform feature catalog.
Instances currently counted against the quota.
The licensed ceiling. Zero when the caller bypasses licensing (sysadmin, or a token holding
no-license-required) — there is no cap to render in that case, so treat it as unlimited
rather than as a cap of nought.
Whether one more instance would still be within the licensed ceiling.
The refusal the gate would produce, or empty while there is room.
Examplegenerated
{ "quotas": [ { "featureCode": "example", "name": "example", "used": 1, "limit": 1, "canAddMore": true, "message": "example" } ]}