Deprecated

Announced Jun 1, 2020: APIs under the ECom.Licenses scope are scheduled for End of Life effective December 1, 2020. At that time this API will no longer be available. Please see ECom.Shop (e.g. Get License) for the next generation Ecommerce API functionality.

GET /service/api/ecom/licenses/{licenseId}

Gets the details for an individual license, child license, or trial license by its licenseId.

Request Information

URI Parameters

NameDescriptionTypeAdditional Information
licenseId

The id of the license.

integer

Required

URI Sample(s)

GET
https://unityapi.webrootcloudav.com/service/api/ecom/licenses/142269396

Body Parameters

None.

Response Information

Resource Description

Details about the license.

GetLicenseResponseServiceModel
NameDescriptionTypeAdditional Information
License

The License item.

GetLicenseResponseServiceModel_License

None.

Sample Response

{
  "License": {
    "LicenseId": 194321106,
    "Keycode": "B2114B359DD64E9882F4",
    "ExternalAccountId": "MyAccountRef7113",
    "Seats": 50,
    "SeatsUsed": 0,
    "StorageGb": 50,
    "StartDate": "2024-07-27T05:03:08.8228319Z",
    "ExpirationDate": "2025-07-27T05:03:08.8228319Z",
    "Modules": [
      {
        "Seats": 50,
        "Name": "DNS Protection",
        "Code": "DNS",
        "LicenseType": "full",
        "StartDate": "2024-07-27T05:03:08.8228319Z",
        "ExpirationDate": "2025-07-27T05:03:08.8228319Z"
      },
      {
        "Seats": 50,
        "Name": "Webroot Security Awareness Training",
        "Code": "WSAT",
        "LicenseType": "full",
        "StartDate": "2024-07-27T05:03:08.8228319Z",
        "ExpirationDate": "2025-07-27T05:03:08.8228319Z"
      }
    ]
  }
}                    
<GetLicenseResponseServiceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.ECom.Models">
  <License>
    <ExpirationDate>2025-07-27T05:03:08.8228319Z</ExpirationDate>
    <ExternalAccountId>MyAccountRef7113</ExternalAccountId>
    <Keycode>B2114B359DD64E9882F4</Keycode>
    <LicenseId>194321106</LicenseId>
    <Modules>
      <GetLicenseResponseServiceModel_Module>
        <Code>DNS</Code>
        <ExpirationDate>2025-07-27T05:03:08.8228319Z</ExpirationDate>
        <LicenseType>full</LicenseType>
        <Name>DNS Protection</Name>
        <Seats>50</Seats>
        <StartDate>2024-07-27T05:03:08.8228319Z</StartDate>
      </GetLicenseResponseServiceModel_Module>
      <GetLicenseResponseServiceModel_Module>
        <Code>WSAT</Code>
        <ExpirationDate>2025-07-27T05:03:08.8228319Z</ExpirationDate>
        <LicenseType>full</LicenseType>
        <Name>Webroot Security Awareness Training</Name>
        <Seats>50</Seats>
        <StartDate>2024-07-27T05:03:08.8228319Z</StartDate>
      </GetLicenseResponseServiceModel_Module>
    </Modules>
    <Seats>50</Seats>
    <SeatsUsed>0</SeatsUsed>
    <StartDate>2024-07-27T05:03:08.8228319Z</StartDate>
    <StorageGb>50</StorageGb>
  </License>
</GetLicenseResponseServiceModel>