Skip to main content
GET
/
api
/
v1
/
organizations
/
{organizationID}
/
quotas
List quotas
curl --request GET \
  --url https://identity.nks.europe-west4.nscale.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
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nscale.com/llms.txt

Use this file to discover all available pages before exploring further.

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.