List domains

The LISTDOMAINS action lists the domain names that are associated with the specified ACME account, and with any other ACME accounts that share the same external account binding details.

Each domain name in the report is listed only once, showing its most recent expiry date.

Action: LISTDOMAINS

Variable Name Type Max. Length Description

loginName

string

64 chars

Your account username.

This value is case sensitive.

loginPassword

string

128 chars

Your account password.

This value is case sensitive.

action

string

30 chars

The action to be taken.

In this case, the value is: LISTDOMAINS.

acmeAccountID

string

32 chars

Your Base64 URL-encoded ACME account ID.

page

integer

(Optional) 0-based page index.

size

integer

(Optional) Number of elements per page.

Sample request

curl --location --request POST 'https://secure.trust-provider.com/products/!ACMEAdmin' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'loginName=loginName' \
--data-urlencode 'loginPassword=loginPassword' \
--data-urlencode 'action=LISTDOMAINS' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456'

Response

Response parameters

The response may contain the following parameters:

Parameter Type Description

Domains

array

An array of domain objects.

The beginning of the Domains array

domainName

string

The domain name.

expiresAt

string

The expiry date of the domain name in ISO 8601 format.

ovAnchorOrderNumber

number

An organization pre-validation ID to associate with the domains.

Sample success responses

Success response for DV issuance
{
    "Domains": [
        {
            "domainName": "example.com",
            "expiresAt": "2025-09-20T23:59:59Z",
        },
        {
            "domainName": "mywebsite.com",
            "expiresAt": "2025-09-20T23:59:59Z",
        },
        {
            "domainName": "blog.mywebsite.com",
            "expiresAt": "2025-09-20T23:59:59Z",
        }
    ]
}
Success response for OV issuance
{
    "Domains": [
        {
            "domainName": "brand.example.com",
            "expiresAt": "2025-09-20T23:59:59Z",
            "ovAnchorOrderNumber": 123457
        },
        {
            "domainName": "service.com",
            "expiresAt": "2025-09-20T23:59:59Z",
            "ovAnchorOrderNumber": 123457
        },
        {
            "domainName": "subdomain.website.com",
            "expiresAt": "2025-09-20T23:59:59Z",
            "ovAnchorOrderNumber": 7654321
        }
    ]
}
Success response without data
{
  "Domains": []
}