Quotas


Other Operations

get-quota

Retrieve Resource Quota

GET /quota/{entity}

Path parameters

NameInDescription
entitypath

Responses

Status: 200 - 200

Content-Type: application/json

PropertyTypeDescription
limitintegerResource Limit. -1 for Unlimited
resourcestringResource Name
usageintegerResource Usage
Example output
{
  "limit": 0,
  "resource": "string",
  "usage": 0
}

SDK reference for get-quota: golang | Python | Java

CLI: exo api get-quota

list-quotas

List Organization Quotas

GET /quota

Responses

Status: 200 - 200

Content-Type: application/json

PropertyTypeDescription
quotasarray[object]schema details
Example output
{
  "quotas": [
    {
      "limit": 0,
      "resource": "string",
      "usage": 0
    }
  ]
}

SDK reference for list-quotas: golang | Python | Java

CLI: exo api list-quotas

Last updated on