Add a bundle
The ADDBUNDLE action purchases a bundle and adds domain slot capacity to the subscription Wallet.
Purchasing the first bundle initiates the subscription and defines its expiration date. Additional bundles can be purchased at any time to increase available domain slots. Adding more bundles is subject to pro-rated charges based on the number of full days remaining before the subscription expiration date.
Action: ADDBUNDLE
| 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 |
The type of domain. The allowed values are:
|
|
|
integer |
The number of domains in the bundle. The supported values are:
|
|
|
string |
1 char |
Indicates whether to return a quote or perform the action. The allowed 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=ADDBUNDLE' \
--data-urlencode 'acmeAccountID=ABc_123xYZ456' \
--data-urlencode 'domainType=fqdn' \
--data-urlencode 'numberOfDomains=5' \
--data-urlencode 'quoteOnly=N'