GET
/
v1
/
domains
/
accounts
/
{account}
/
tlds
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/domains/accounts/{account}/tlds \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "price": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account
string<uuid>
required

The account ID

Response

200
application/json

Array of TldResource

The response is of type object.