Reinstate an ACME account

The UNSUSPENDACCOUNT action reinstates one or more ACME accounts that have been previously suspended. This action is useful when you want to allow previously suspended ACME accounts to request certificates again. It can be used to reinstate a single ACME account, all ACME accounts that share the same EAB details, or all ACME accounts associated with the specified Sectigo Reseller (loginName).

In the case where all ACME accounts sharing the same EAB details or all ACME accounts associated with the specified Sectigo Reseller are reinstated, the corresponding EAB details are also reinstated and can be used to create new ACME accounts.

Reinstated ACME accounts are restored to whatever state they were in when they were first suspended.

Action: UNSUSPENDACCOUNT

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

acmeAccountID

string

32 chars

(Conditional) The Base64 url encoded ACME account ID of the ACME account to be reinstated.

Exclude when includeAdditionalAccounts is set to *.

includeAdditionalAccounts

string

1 char

Indicates whether to reinstate all accounts that share the same EAB details.

The possible values are:

  • Y — (Default) Reinstate all accounts that share the same EAB details, and EAB details themselves.

  • N — Reinstate only the specified account.

  • * — Reinstate all accounts and all the corresponding EAB details associated with the specified Sectigo account (loginName).

Sample request

Reinstate an ACME account
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=UNSUSPENDACCOUNT' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456' \
--data-urlencode 'includeAdditionalAccounts=N'
Reinstate all ACME accounts sharing EAB credentials
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=UNSUSPENDACCOUNT' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456' \
--data-urlencode 'includeAdditionalAccounts=Y'
Reinstate all ACME accounts belonging to an external account
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=UNSUSPENDACCOUNT' \
--data-urlencode 'includeAdditionalAccounts=*'

Success response

{
    "nRecordsUpdated": 1,
    "success": true
}