get https://{hostname}/gtm-api/v1/reports/domain-list/
This operation retrieves a list of property names, as well as Datacenter names and IDs for a given domain.
Response
This operation retrieves a list of property names, as well as Datacenter names and IDs for a given domain.
xxxxxxxxxx
curl --request GET \
--url https://hostname/gtm-api/v1/reports/domain-list/domain \
# Add Authorization header to this snippet
--header 'accept: application/json'
xxxxxxxxxx
21{
"datacenters": [
{
"datacenterId": 3132,
"datacenterNickname": "Winterfell"
},
{
"datacenterId": 3133,
"datacenterNickname": "Braavos"
}
],
"name": "example.akadns.net",
"properties": [
"www",
"db"
],
"resources": [
"cpu",
"disk"
]
}