Quotas
Other Operations
get-quota
Retrieve Resource Quota
GET /quota/{entity}Path parameters
| Name | In | Description |
|---|---|---|
entity | path |
Responses
Status: 200 - 200
Content-Type: application/json
| Property | Type | Description |
|---|---|---|
limit | integer | Resource Limit. -1 for Unlimited |
resource | string | Resource Name |
usage | integer | Resource 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 /quotaResponses
Status: 200 - 200
Content-Type: application/json
| Property | Type | Description |
|---|---|---|
quotas | array[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