curl --request GET \
--url https://api.comm.com/api/v1/domains/platform \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"domain": "<string>",
"domain_proxy_id": "<string>",
"status": "<string>",
"https_support": "<string>"
}
]
}
curl --request GET \
--url https://api.comm.com/api/v1/domains/platform \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"domain": "<string>",
"domain_proxy_id": "<string>",
"status": "<string>",
"https_support": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The collection of PlatformDomainData
The response is of type object
.