Domains

Endpoints for listing account information.

List domains

This endpoint allows you to list all your domains.

GET /domains

Response

200 OK

When successful, returns a Paginated list of Domain resources.

{

"entries": [

// items

],

"metadata": {

"current_page": 1,

"per_page": 10,

"total_entries": 1,

"total_pages": 1

}

}

401 Unauthorized

If the authorization token is not valid, it returns an unauthorized response.

{

"error": "Unauthenticated"

}