Renewing product licenses
You can manually renew a license for a SiteLock product or add-on at any time during the 30-day renewal period before the expiration date by calling AutoApplyOrder
with the previousOrder
, domainName
, and product
parameters.
Make sure that the values of domainName
and product
are the same as in the initial order.
A single call can have one product ID and one or more add-on IDs.
If you want to enable or disable the automatic renewal of a license, pass Y
or N
with the enableAutoRenew
parameter.
By default autorenewal is enabled.
If the license of a product expires earlier than the license of an add-on, you won’t be able to use an add-on without a product.
SSL PLUS SiteLock Bundle cannot be renewed seperately from an SSL certificate—it will be renewed automatically once the SSL certificate is renewed. |
The base URL is:
https://secure.trust-provider.com/products/
Request parameters
The following table lists parameters that you can use to renew the license of a product.
Parameter | Max. Length | Description |
---|---|---|
|
64 chars |
The reseller’s login name |
|
128 chars |
The reseller’s password |
|
64 chars |
The product ID, a comma-separated string of integers |
|
integer |
The license period in days.
The value can be |
|
32,767 chars |
The customer’s domain name |
|
255 chars |
The customer’s email address |
|
integer |
The order number of the previous license |
|
1 char |
Specifies whether to auto-renew the license ( |
Example request
curl -X POST https://secure.trust-provider.com/products/!AutoApplyOrder?
-d 'loginName=sectigo_reseller' \
-d 'loginPassword=reseller_sectigo' \
-d 'product=1059' \
-d 'days=365' \
-d 'domainName=mydomain.com' \
-d '[email protected]' \
-d 'previousOrderNumber=3034881'