List contacts

The LISTCONTACTS action lists the contact email addresses that are associated with the specified ACME account.

Action: LISTCONTACTS

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

acmeAccountID

string

32 chars

Your Base64 url encoded ACME account ID.

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=LISTCONTACTS' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456'

Success responses

Success response with data
{
  "Contacts": [
    {
      "emailAddress": "[email protected]"
    },
    {
      "emailAddress": "[email protected]"
    }
  ]
}
Success response without data
{
  "Contacts": []
}