Ordering products
You can order a SiteLock product or an add-on through the AutoApplyOrder
API.
A single call can have one product ID and one or more add-on IDs.
The base URL is:
https://secure.trust-provider.com/products/
Placing an order for a new customer
You can call the AutoApplyOrder
method and provide the domainName
to order a product for a new customer.
Once you place an order, a new SiteLock account is created.
Request parameters
The following table lists parameters that you can use in the request.
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 For the SiteLock 911 product, omit this parameter from the request. |
|
32767 chars |
The customer’s domain name |
|
255 chars |
The customer’s email address |
|
1 char |
Specifies whether to auto-renew ( |
|
64 chars |
(Optional) The name of the customer’s organization |
|
128 chars |
(Optional) The street address of the customer’s organization |
|
128 chars |
(Optional) The state or province name where the customer’s organization is registered |
|
40 chars |
(Optional) The postal code of the customer’s organization |
|
2 chars |
(Optional) The country where the customer’s organization is registered |
|
64 chars |
(Optional) The customer’s first name |
|
64 chars |
(Optional) The customer’s last name |
|
50 chars |
(Optional) The customer’s login name. If a login name isn’t provided, the customer’s email address will be used a login name. |
|
50 chars |
(Optional) The customer’s password. The customer will be prompted to change their password on first login to SiteLock. |
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 'organizationName=myOrganization' \
-d 'streetAddress1=Homestead St' \
-d 'stateOrProvinceName=Kansas' \
-d 'postalCode=67202' \
-d 'countryName=US' \
-d 'appRepForename=John' \
-d 'appRepSurname=Doe' \
-d 'appRepLoginName=Jane' \
-d 'appRepLoginPassword=Doe'
Ordering SSL PLUS SiteLock Bundle with SSL
To order a free SiteLock plan with an SSL certificate, call the AutoApplyOrder
method and pass the CSR parameters.
SSL PLUS SiteLock Bundle isn’t a standalone product, and therefore cannot be purchased separately from an SSL certificate. The bundle comes with a purchased 90-day, one-year, or multi-year certificate. Add-ons aren’t available for SSL PLUS SiteLock Bundle users.
If you don’t pass the customer’s email address with the SSL certificate order, the bundle won’t be ordered.
If you’d like to order only an SSL certificate, without the bundle, pass the disableSiteLock=Y
parameter with the request.
For more information about SSL PLUS SiteLock Bundle features and terms, and a list of SSL product IDs, see SSL PLUS SiteLock Bundle overview.
If you purchase multiple SSL certificates that qualify for the bundle, you will receive a separate SSL PLUS SiteLock Bundle license for each certificate. For a wildcard certificate, you will receive a license only for the root domain. |
Request parameters
The following table lists parameters that you can use in the request.
Parameter | Max. Length | Description |
---|---|---|
|
64 chars |
The reseller’s login name |
|
128 chars |
The reseller’s password |
|
64 chars |
The SSL 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 software where the certificate will be installed.
The default value is |
|
64 chars |
The organization name included in the certificate Organization (O) field |
|
128 chars |
The location name included in the certificate Location (L) field |
|
128 chars |
The state or province name included in the certificate State (ST) field |
|
2 chars |
The country name included in the certificate Country (C) field |
|
1 char |
Whether the applicant has been verified ( |
|
32,767 chars |
The Base64 encoded CSR |
|
1 char |
Which values to use if a field is specified in both the CSR and as a separate parameter.
The default value is
|
|
1 char |
Specifies whether to auto-renew ( |
|
1 char |
Specifies whether to order only an SSL certificate, without the SSL PLUS SiteLock Bundle.
The possible values are |
Example request
curl -X POST https://secure.trust-provider.com/products/!AutoApplyOrder?
-d 'loginName=sectigo_reseller' \
-d 'loginPassword=reseller_sectigo' \
-d 'product=287' \
-d 'days=365' \
-d 'domainName=mydomain.com' \
-d '[email protected]' \
-d 'serverSoftware=-1' \
-d 'organizationName=myOrganizaton' \
-d 'localityName=Wichita' \
-d 'stateOrProvinceName=Kansas' \
-d 'countryName=US' \
-d 'isCustomerValidated=N' \
-d 'csr=my_base64_encoded_csr' \
-d 'prioritiseCSRValues=Y'
Placing a new order for an existing customer
To create a new order on an existing account, you need to pass the previousOrderNumber
associated with the account and a new domain (not the one already setup on the account) into the AutoApplyOrder
endpoint.
Request parameters
The following table lists parameters that you can use in the request.
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 For the SiteLock 911 product, omit this parameter from the request. |
|
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 ( |
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'
Ordering an add-on for an existing product
If you already have a product license and would like to purchase an add-on, call AutoApplyOrder
and specify the previous order number, the ID of an add-on to be provisioned, and the existing domain to identify the product to add the add-on to.
Request parameters
The following table lists parameters that you can use in the request.
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 is |
|
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 ( |
Example request
curl -X POST https://secure.trust-provider.com/products/!AutoApplyOrder?
-d 'loginName=sectigo_reseller' \
-d 'loginPassword=reseller_sectigo' \
-d 'product=1071' \
-d 'days=365' \
-d 'domainName=mydomain.com' \
-d '[email protected]' \
-d 'previousOrderNumber=3034881'
Using the auto-renewal setting on new orders
You can place a new order for an existing customer and specify the license duration and whether it will be automatically renewed. Note that to change the auto-renewal status you must have the appropriate permissions.
Request parameters
The following table lists parameters that you can use in the request.
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 |
|
1 char |
Specifies whether to auto-renew ( |
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]'