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 |
---|---|---|---|
|
string |
64 chars |
Your account username. This value is case sensitive. |
|
string |
128 chars |
Your account password. This value is case sensitive. |
|
string |
30 chars |
The action to be taken. In this case, the value is: |
|
string |
32 chars |
(Conditional) The Base64 url encoded ACME account ID of the ACME account to be reinstated. Exclude when |
|
string |
1 char |
Indicates whether to reinstate all accounts that share the same EAB details. The possible values are:
|
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=UNSUSPENDACCOUNT' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456' \
--data-urlencode 'includeAdditionalAccounts=N'
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'
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=*'