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 |
---|---|---|---|
|
string |
64 chars |
Your account username. This value is case sensitive. |
|
string |
128 chars |
Your account password. This value is case sensitive. |
|
string |
30 chars |
The action to be taken. In this case, the value is: |
|
string |
32 chars |
Your Base64 url encoded ACME account ID. |
|
integer |
(Optional) 0-based page index. |
|
|
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'
Success responses
Success response with data
{
"Domains": [
{
"domainName": "brand.example.com",
"expiresAt": "2025-09-20T23:59:59Z"
},
{
"domainName": "service.com",
"expiresAt": "2025-09-20T23:59:59Z"
},
{
"domainName": "subdomain.website.com",
"expiresAt": "2025-09-20T23:59:59Z"
}
]
}
Success response without data
{
"Domains": []
}