Listing Deployment Zones via API
This endpoint lists all available deployment zones. Zones represent the geographic location from which your deployments are executed.
Tip: You can explore and test this endpoint interactively using our OpenAPI documentation.
List Zones
URL
/zones
HTTP Method
GET
Example cURL request
curl -H "Content-type: application/json" \
-H "Accept: application/json" \
--user adam@atechmedia.com:my-api-key \
https://test.deployhq.com/zones
Example Response
[
{
"identifier": "uk",
"description": "UK"
},
{
"identifier": "us_east",
"description": "US-EAST"
}
]
Fields
| Field | Description |
|---|---|
identifier |
The zone identifier used when creating or updating projects |
description |
A human-readable description of the zone |