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'

Response

Response parameters

The response may contain the following parameters:

Parameter Type Description

Servers

array

The list of ACME servers associated with the specified Sectigo Reseller account.

The beginning of the Servers array

serverUrl

string

The URL of the ACME server.

productID

number

The product ID of the ACME server.

productDescription

string

The product description of the ACME server.

certValidationType

string

The certificate validation type of the ACME server.

Sample 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": []
}