List ACME servers

The LISTSERVERS action lists the ACME servers belonging to the specified Sectigo Reseller account (loginName).

If you have branded Sectigo sub-CAs, please contact your Account Manager to configure ACME servers. This will allow the use of your existing CAs and enable you to PREREGISTER ACME accounts with them.

Action: LISTSERVERS

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: LISTSERVERS.

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=LISTSERVERS'

Success responses

Success response with data
{
    "Servers": [
        {
            "serverUrl": "https://acme.sectigo.com/v2/DV",
            "productID": 608,
            "productDescription": "CaaS DV TLS Certificate",
            "certValidationType": "DV"
        }
    ]
}
Success response without data
{
  "Servers": []
}