Skip to main content

Zone

List the availability zones available to the account; zone UUIDs are used across most other endpoints.

Resource base path: /restapi/zone

MethodPathDescription
GET/restapi/zone/zonelistZone List
note

apikey and secretkey are required HTTP headers on every request and are omitted from the parameter tables below. See Authentication.


Zone List

Zone List.

GET /restapi/zone/zonelist

Parameters

ParameterInTypeRequiredDescription
uuidquerystringNoUUID of the resource.

Example request

curl -X GET \
"https://portal.your-domain.com/restapi/zone/zonelist" \
-H "apikey: YOUR_API_KEY" \
-H "secretkey: YOUR_SECRET_KEY"

Responses

CodeDescription
200Successful operation.
401Invalid authentication credentials.
550Permission denied.
{
"count": 1,
"listZoneResponse": [
{
"imageFlag": "string",
"name": "example-name",
"countryName": "example-name",
"isActive": true,
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
]
}