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'

Response

Response parameters

The response may contain the following parameters:

Parameter Type Description

Bindings

array

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

The beginning of the Bindings array

reusable

boolean

Indicates whether the ACME account binding is reusable.

eabMACKeyb64url

string

The MAC Key for the ACME account binding.

eabMACIDb64url

string

The Base64 URL-encoded Key ID for the ACME account binding.

lastActivity

string

The timestamp of the last activity for the ACME account binding (if applicable).

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