GET
/
v1
/
domains
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/domains \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "domain": "<string>",
      "domain_plan_id": "<string>",
      "domain_account_tld_id": "<string>",
      "domain_proxy_id": "<string>",
      "cost": "<string>",
      "checked_availability_at": "<string>",
      "registered_at": "<string>",
      "configured_at": "<string>",
      "total_sms_sent": "<string>",
      "used_at": "<string>",
      "status": "<string>",
      "https_support": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "is_active": false
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer | null
per_page
integer | null
search_ids
string<uuid>[]

Response

200
application/json

The collection of DomainData

The response is of type object.