Skip to main content
GET
/
api
/
v1
/
organizations
/
{organizationID}
/
quotas
List quotas
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Operation requires OAuth 2.0 bearer token authentication.

Path Parameters

organizationID
string
required

An organization ID.

Response

Queries the quotas for an organizational unit.

A list of quotas.

quotas
object[]
required

A list of quotas.