Available Resource
Query the resources available to the account's domain.
Resource base path: /restapi/availableResource
| Method | Path | Description |
|---|---|---|
GET | /restapi/availableResource/getAvailableResourceByDomain | Resources Availability |
note
apikey and secretkey are required HTTP headers on every request and are omitted from the parameter tables below. See Authentication.
Resources Availability
List available resources by domain.
GET /restapi/availableResource/getAvailableResourceByDomain
Example request
curl -X GET \
"https://portal.your-domain.com/restapi/availableResource/getAvailableResourceByDomain" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"
Responses
| Code | Description |
|---|---|
200 | Successful operation. |
401 | Invalid authentication credentials. |
550 | Permission denied. |
{
"count": 1,
"kongUserAvailableResource": [
{
"availableLimit": "string",
"usedLimit": "string",
"maximumLimit": "string",
"resourceType": "string"
}
]
}