cURL
curl --request GET \ --url https://api.example.com/api/v1/organizations/{organizationID}/quotas \ --header 'Authorization: Bearer <token>'
{ "quotas": [ { "kind": "clusters", "quantity": 2, "used": 1, "free": 1, "committed": 1, "reserved": 0, "displayName": "Clusters", "description": "All cluster types e.g. Kubernetes, compute, etc.", "default": 5 } ] }
Gets quotas for the organization.
Operation requires OAuth 2.0 bearer token authentication.
An organization ID.
Queries the quotas for an organizational unit.
A list of quotas.
Show child attributes
The kind of resource.
The maximum amount of that resource.
The amount of that resource that is used.
The amount of that resource that is free.
The amount of that resource always in use.
The amount of that resource that may be used e.g. autoscaled.
The name that should be displayed to end users.
A verbose explanation of what the quota limits.
The default value of the quota.