POST /service/api/ecom/shop/trials/{keycode}/modules
Creates trial modules for a given parent keycode.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| keycode |
The keycode of a parent console where trial module(s) should be created. |
string |
Required |
URI Sample(s)
|
POST
|
https://unityapi.webrootcloudav.com/service/api/ecom/shop/trials/E4D0A331E49548228745/modules
|
Body Parameters
Information about the trial(s) that should be created.
CreateModuleTrialRequestServiceModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| Modules |
Modules (e.g. DNS Protection or WSAT) for which trial licenses should be created. |
Collection of CreateModuleTrialRequestServiceModel_Module |
Required |
Sample Request
{
"Modules": [
{
"LicenseSeats": 441,
"LicenseCategoryName": "SDNS",
"VaultId": null,
"ProductPlatformId": null
},
{
"LicenseSeats": 511,
"LicenseCategoryName": "SECA",
"VaultId": null,
"ProductPlatformId": null
}
]
}
<CreateModuleTrialRequestServiceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.ECom.Models">
<Modules>
<CreateModuleTrialRequestServiceModel_Module>
<LicenseCategoryName>SDNS</LicenseCategoryName>
<LicenseSeats>441</LicenseSeats>
<ProductPlatformId i:nil="true" />
<VaultId i:nil="true" />
</CreateModuleTrialRequestServiceModel_Module>
<CreateModuleTrialRequestServiceModel_Module>
<LicenseCategoryName>SECA</LicenseCategoryName>
<LicenseSeats>511</LicenseSeats>
<ProductPlatformId i:nil="true" />
<VaultId i:nil="true" />
</CreateModuleTrialRequestServiceModel_Module>
</Modules>
</CreateModuleTrialRequestServiceModel>
Response Information
Resource Description
Details about the newly created trial(s).
CreateModuleTrialResponseServiceModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| LicenseId |
A unique identifier for the license that was queried. |
integer |
None. |
| Keycode |
Keycode identifying the license. |
string |
None. |
| ProductLineDescription |
Description of the associated product line. |
string |
None. |
| ParentLicenseId |
Unique identifier for the parent license. |
integer |
None. |
| ParentKeycode |
The keycode for the parent license. |
string |
None. |
| ChildLicenseActivations |
Number of activations in child licenses. |
integer |
None. |
| PartnerStartDate |
Start date of the partner. |
date |
None. |
| Profile |
A dictionary of profiles. |
Dictionary of string [key] and CreateModuleTrialResponseServiceModel_LicenseProfile [value] |
None. |
| Customer |
The customer associated to this license. |
CreateModuleTrialResponseServiceModel_Customer |
None. |
Sample Response
{
"LicenseId": 188658694,
"Keycode": "173247501E9D4DAC8830",
"ProductLineDescription": "Webroot Business",
"ParentLicenseId": 172814167,
"ParentKeycode": "5DA38B1EC8DB4A9A9BA3",
"ChildLicenseActivations": 7,
"PartnerStartDate": "2023-12-20T21:39:01",
"Profile": {
"SAEP": {
"LicenseCategoryName": "SAEP",
"LicenseCategoryDescription": "Webroot Endpoint Protection",
"LicenseSeats": 871,
"LicenseKeycodeTypeId": 3,
"StartDate": "2025-01-18T14:15:42",
"ExpirationDate": "2027-10-03T23:58:50",
"LicenseAttributeValue": null,
"LicenseAttributeValueDescription": null,
"LicenseAttributeDescription": null,
"CategoryTypeName": "trial",
"ItemHierarchyId": 1,
"ItemHierarchyName": "primary",
"LicenseStatusId": 3,
"LicenseStatusDescription": "manually disabled",
"UsagePricingModelId": null,
"UsagePricingModelName": null,
"UsageCheckDay": 15,
"VaultId": null,
"VaultName": null,
"Vaults": null,
"ProductPlatformId": null,
"ProductPlatformName": null,
"RetentionModelId": null,
"RetentionModelName": null
},
"SDNS": {
"LicenseCategoryName": "SDNS",
"LicenseCategoryDescription": "Webroot DNS Protection",
"LicenseSeats": 798,
"LicenseKeycodeTypeId": 3,
"StartDate": "2025-02-15T08:54:15",
"ExpirationDate": "2028-04-19T14:33:38",
"LicenseAttributeValue": null,
"LicenseAttributeValueDescription": null,
"LicenseAttributeDescription": null,
"CategoryTypeName": "trial",
"ItemHierarchyId": 2,
"ItemHierarchyName": "secondary",
"LicenseStatusId": 0,
"LicenseStatusDescription": "inactive",
"UsagePricingModelId": null,
"UsagePricingModelName": null,
"UsageCheckDay": 15,
"VaultId": null,
"VaultName": null,
"Vaults": null,
"ProductPlatformId": null,
"ProductPlatformName": null,
"RetentionModelId": null,
"RetentionModelName": null
},
"SECA": {
"LicenseCategoryName": "SECA",
"LicenseCategoryDescription": "Webroot Security Awareness",
"LicenseSeats": 499,
"LicenseKeycodeTypeId": 3,
"StartDate": "2024-11-24T08:01:08",
"ExpirationDate": "2028-05-21T21:41:24",
"LicenseAttributeValue": null,
"LicenseAttributeValueDescription": null,
"LicenseAttributeDescription": null,
"CategoryTypeName": "trial",
"ItemHierarchyId": 2,
"ItemHierarchyName": "secondary",
"LicenseStatusId": 2,
"LicenseStatusDescription": "disabled",
"UsagePricingModelId": null,
"UsagePricingModelName": null,
"UsageCheckDay": 15,
"VaultId": null,
"VaultName": null,
"Vaults": null,
"ProductPlatformId": null,
"ProductPlatformName": null,
"RetentionModelId": null,
"RetentionModelName": null
}
},
"Customer": {
"VendorCustomerCode": "2927"
}
}
<CreateModuleTrialResponseServiceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.ECom.Models">
<ChildLicenseActivations>7</ChildLicenseActivations>
<Customer>
<VendorCustomerCode>2927</VendorCustomerCode>
</Customer>
<Keycode>173247501E9D4DAC8830</Keycode>
<LicenseId>188658694</LicenseId>
<ParentKeycode>5DA38B1EC8DB4A9A9BA3</ParentKeycode>
<ParentLicenseId>172814167</ParentLicenseId>
<PartnerStartDate>2023-12-20T21:39:01</PartnerStartDate>
<ProductLineDescription>Webroot Business</ProductLineDescription>
<Profile xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringCreateModuleTrialResponseServiceModel_LicenseProfilefLvholdK>
<d2p1:Key>SAEP</d2p1:Key>
<d2p1:Value>
<CategoryTypeName>trial</CategoryTypeName>
<ExpirationDate>2027-10-03T23:58:50</ExpirationDate>
<ItemHierarchyId>1</ItemHierarchyId>
<ItemHierarchyName>primary</ItemHierarchyName>
<LicenseAttributeDescription i:nil="true" />
<LicenseAttributeValue i:nil="true" />
<LicenseAttributeValueDescription i:nil="true" />
<LicenseCategoryDescription>Webroot Endpoint Protection</LicenseCategoryDescription>
<LicenseCategoryName>SAEP</LicenseCategoryName>
<LicenseKeycodeTypeId>3</LicenseKeycodeTypeId>
<LicenseSeats>871</LicenseSeats>
<LicenseStatusDescription>manually disabled</LicenseStatusDescription>
<LicenseStatusId>3</LicenseStatusId>
<ProductPlatformId i:nil="true" />
<ProductPlatformName i:nil="true" />
<RetentionModelId i:nil="true" />
<RetentionModelName i:nil="true" />
<StartDate>2025-01-18T14:15:42</StartDate>
<UsageCheckDay>15</UsageCheckDay>
<UsagePricingModelId i:nil="true" />
<UsagePricingModelName i:nil="true" />
<VaultId i:nil="true" />
<VaultName i:nil="true" />
<Vaults i:nil="true" />
</d2p1:Value>
</d2p1:KeyValueOfstringCreateModuleTrialResponseServiceModel_LicenseProfilefLvholdK>
<d2p1:KeyValueOfstringCreateModuleTrialResponseServiceModel_LicenseProfilefLvholdK>
<d2p1:Key>SDNS</d2p1:Key>
<d2p1:Value>
<CategoryTypeName>trial</CategoryTypeName>
<ExpirationDate>2028-04-19T14:33:38</ExpirationDate>
<ItemHierarchyId>2</ItemHierarchyId>
<ItemHierarchyName>secondary</ItemHierarchyName>
<LicenseAttributeDescription i:nil="true" />
<LicenseAttributeValue i:nil="true" />
<LicenseAttributeValueDescription i:nil="true" />
<LicenseCategoryDescription>Webroot DNS Protection</LicenseCategoryDescription>
<LicenseCategoryName>SDNS</LicenseCategoryName>
<LicenseKeycodeTypeId>3</LicenseKeycodeTypeId>
<LicenseSeats>798</LicenseSeats>
<LicenseStatusDescription>inactive</LicenseStatusDescription>
<LicenseStatusId>0</LicenseStatusId>
<ProductPlatformId i:nil="true" />
<ProductPlatformName i:nil="true" />
<RetentionModelId i:nil="true" />
<RetentionModelName i:nil="true" />
<StartDate>2025-02-15T08:54:15</StartDate>
<UsageCheckDay>15</UsageCheckDay>
<UsagePricingModelId i:nil="true" />
<UsagePricingModelName i:nil="true" />
<VaultId i:nil="true" />
<VaultName i:nil="true" />
<Vaults i:nil="true" />
</d2p1:Value>
</d2p1:KeyValueOfstringCreateModuleTrialResponseServiceModel_LicenseProfilefLvholdK>
<d2p1:KeyValueOfstringCreateModuleTrialResponseServiceModel_LicenseProfilefLvholdK>
<d2p1:Key>SECA</d2p1:Key>
<d2p1:Value>
<CategoryTypeName>trial</CategoryTypeName>
<ExpirationDate>2028-05-21T21:41:24</ExpirationDate>
<ItemHierarchyId>2</ItemHierarchyId>
<ItemHierarchyName>secondary</ItemHierarchyName>
<LicenseAttributeDescription i:nil="true" />
<LicenseAttributeValue i:nil="true" />
<LicenseAttributeValueDescription i:nil="true" />
<LicenseCategoryDescription>Webroot Security Awareness</LicenseCategoryDescription>
<LicenseCategoryName>SECA</LicenseCategoryName>
<LicenseKeycodeTypeId>3</LicenseKeycodeTypeId>
<LicenseSeats>499</LicenseSeats>
<LicenseStatusDescription>disabled</LicenseStatusDescription>
<LicenseStatusId>2</LicenseStatusId>
<ProductPlatformId i:nil="true" />
<ProductPlatformName i:nil="true" />
<RetentionModelId i:nil="true" />
<RetentionModelName i:nil="true" />
<StartDate>2024-11-24T08:01:08</StartDate>
<UsageCheckDay>15</UsageCheckDay>
<UsagePricingModelId i:nil="true" />
<UsagePricingModelName i:nil="true" />
<VaultId i:nil="true" />
<VaultName i:nil="true" />
<Vaults i:nil="true" />
</d2p1:Value>
</d2p1:KeyValueOfstringCreateModuleTrialResponseServiceModel_LicenseProfilefLvholdK>
</Profile>
</CreateModuleTrialResponseServiceModel>