GET api/GetLicenseInfo?licenseId={licenseId}

Get license information

Request Information

URI Parameters

NameDescriptionTypeAdditional information
licenseId

Id of license to retrieve

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

License information

GetLicenseInfoResponse
NameDescriptionTypeAdditional information
StartDate

date

None.

EndDate

date

None.

Product

ProductInfoDto

None.

Target

TargetInfoDto

None.

Owner

OwnerInfoDto

None.

Response Formats

application/json, text/json

Sample:
{
  "StartDate": "2025-12-25T15:50:10.8824088+00:00",
  "EndDate": "2025-12-25T15:50:10.8824088+00:00",
  "Product": {
    "Id": "01e4c3df-cb4e-4347-b330-82fbfed95a6e",
    "Isbn": "sample string 2",
    "ProductKey": "sample string 3",
    "IsActive": true,
    "Name": "sample string 5"
  },
  "Target": {
    "Id": "c4fe8b9b-e404-456a-a410-6581201a7514",
    "UserGroupId": "0031d29a-3a0e-4b65-8ce0-848e025d0e7d",
    "UserGroupName": "sample string 3"
  },
  "Owner": {
    "Id": "39e7b17b-cd8c-44af-a7ae-edb676d50128",
    "Identifier": "sample string 2",
    "Name": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<GetLicenseInfoResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <StartDate>2025-12-25T15:50:10.8824088+00:00</StartDate>
  <EndDate>2025-12-25T15:50:10.8824088+00:00</EndDate>
  <Product>
    <Id>01e4c3df-cb4e-4347-b330-82fbfed95a6e</Id>
    <Isbn>sample string 2</Isbn>
    <ProductKey>sample string 3</ProductKey>
    <IsActive>true</IsActive>
    <Name>sample string 5</Name>
  </Product>
  <Target>
    <Id>c4fe8b9b-e404-456a-a410-6581201a7514</Id>
    <UserGroupId>0031d29a-3a0e-4b65-8ce0-848e025d0e7d</UserGroupId>
    <UserGroupName>sample string 3</UserGroupName>
  </Target>
  <Owner>
    <Id>39e7b17b-cd8c-44af-a7ae-edb676d50128</Id>
    <Identifier>sample string 2</Identifier>
    <Name>sample string 3</Name>
  </Owner>
</GetLicenseInfoResponse>