Scope requirements
Scope requirements
Retrieve domains
To retrieve all domains, make aGET request to /cms/v3/domains.
You can filter and sort the returned domains using query parameters. For example, the following request would retrieve the first 10 domains created after January 1, 2024:
| Parameter | Type | Description |
|---|---|---|
after | String | Cursor token to get the next set of results. Available from paging.next.after in paginated responses. |
archived | Boolean | Filter by whether the domain is archived. |
createdAfter | String | Filter for domains created after a given date (ISO 8601 format). |
createdAt | String | Filter for domains created at a given date (ISO 8601 format). |
createdBefore | String | Filter for domains created before a given date (ISO 8601 format). |
limit | Integer | Maximum number of domains to return. |
sort | Array | List of fields to sort by. |
updatedAfter | String | Filter for domains updated after a given date (ISO 8601 format). |
updatedAt | String | Filter for domains updated at a given date (ISO 8601 format). |
updatedBefore | String | Filter for domains updated before a given date (ISO 8601 format). |
200 response will return a JSON object with details for each connected domain.
Retrieve a single domain
To retrieve details for a specific domain, make aGET request to /cms/v3/domains/{domainId}.
For example, the request below would retrieve the details for the domain with ID 3210329704:
200 response will return a JSON object with details for the specified domain.