get https://{hostname}/gtm-api/v1/reports/domain-list
This operation retrieves a list of domains, along with a URL templated link to obtain a domain summary of associated properties and datacenters for each.
Response
This operation retrieves a list of domains, along with a URL templated link to obtain a domain summary of associated properties and datacenters for each.
xxxxxxxxxx
curl --request GET \
--url https://hostname/gtm-api/v1/reports/domain-list \
--header 'accept: application/json'
xxxxxxxxxx
16{
"domains": [
"example.akadns.net",
"more-examples.akadns.net"
],
"links": [
{
"href": "http://localhost:9090/gtm-api/v1/reports/domain-list/",
"rel": "self"
},
{
"href": "http://localhost:9090/gtm-api/v1/reports/domain-list/{domain}",
"rel": "domain"
}
]
}