GET
/
workspaces
/
{workspaceSlug}
/
regions
curl --request GET \
  --url https://global.thenile.dev/workspaces/{workspaceSlug}/regions \
  --header 'Authorization: Bearer <token>'
[
  "AWS_US_WEST_2"
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspaceSlug
string
required

Response

200 - application/json
Available regions

The response is of type enum<string>[].

Available options:
AWS_US_WEST_2,
AWS_EU_CENTRAL_1,
AZURE_EASTUS

Was this page helpful?