Extend a subscription
The EXTENDDOMAINS
action extends the subscription for all domains added to the specified ACME account, and to any other ACME accounts that share the same external account binding details, for 365 days.
This can be repeated up to a maximum subscription lifetime of 3 years.
Subscription extension is available within a period of 730 days prior to subscription expiration.
For more information about subscription extensions, see Subscription overview. |
Action: EXTENDDOMAINS
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 |
Your Base64 url encoded ACME account ID. |
|
string |
1 char |
Indicates whether to return a quote or perform the actual action. 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=EXTENDDOMAINS' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456'
Success responses
{
"success": true,
"orderNumber": 7654321,
"cost": 1000,
// displayed price is for sample purposes only
"currency": "USD"
}
quoteOnly
set to Y
{
"success": true,
"cost": 1000.00,
// displayed price is for sample purposes only
"currency": "USD"
}