Deactivate an ACME account
The DEACTIVATEACCOUNT
action completely deactivates one or more ACME accounts.
This action is useful when you want to prevent ACME accounts from ever being used to request certificates again.
It can be used to deactivate a single ACME account, all ACME accounts that share the same EAB details, or all ACME accounts associated with the specified Sectigo Reseller account (loginName
).
In the case where all ACME accounts sharing the same EAB details or all ACME accounts associated with the specified Sectigo Reseller account are deactivated, the corresponding EAB details are also deactivated and can be used to create new ACME accounts.
ACME account deactivation is permanent. For information about temporary ACME account suspensions, see Suspend an ACME account. |
Action: DEACTIVATEACCOUNT
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 deactivated. Exclude when |
|
string |
1 char |
Indicates whether to deactivate all accounts that share the same EAB details, and EAB details themselves. 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=DEACTIVATEACCOUNT' \
--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=DEACTIVATEACCOUNT' \
--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=DEACTIVATEACCOUNT' \
--data-urlencode 'includeAdditionalAccounts=*'