List ACME account bindings

The LISTBINDINGS action lists the details of the ACME account bindings belonging to the specified Sectigo Reseller account (loginName).

Action: LISTBINDINGS

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

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

Success responses

Success response with data
{
  "Bindings": [
    {
      "reusable": true,
      "eabMACKeyb64url": "ZyX321_abc654DeF1",
      "eabMACIDb64url": "ghM4321abc_D8765xyZ"
    },
    {
      "reusable": false,
      "lastActivity": "2019-03-14T14:37:42Z",
      "eabMACKeyb64url": "1FeD456cba_123XyZ",
      "eabMACIDb64url": "Zyx5678D_cba1234Mhg"
    },
    {
      "reusable": true,
      "lastActivity": "2019-03-11T10:43:43Z",
      "eabMACKeyb64url": "0n1234_hgfD45678gNQ",
      "eabMACIDb64url": "YS8765-trEw4321WD"
    }
  ]
}
Success response without data
{
  "Bindings": []
}