Resource Quota
Query per-account resource limits and current consumption.
Resource base path: /restapi/resource-quota
| Method | Path | Description |
|---|---|---|
GET | /restapi/resource-quota/get-resource-limit | Resource Quota Limit List |
note
apikey and secretkey are required HTTP headers on every request and are omitted from the parameter tables below. See Authentication.
Resource Quota Limit List
Resource Quota Limit List.
GET /restapi/resource-quota/get-resource-limit
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
domainUuid | query | string | No |
Example request
curl -X GET \
"https://portal.your-domain.com/restapi/resource-quota/get-resource-limit" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
{
"listResourceQuotaResponse": [
{
"unitType": "string",
"quotaType": "string",
"availableLimit": 1,
"domainUuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"usedLimit": 1,
"maximumLimit": 1
}
],
"count": 1
}