GET api/GetLicenseInfo?licenseId={licenseId}
Get license information
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| licenseId |
Id of license to retrieve |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
License information
GetLicenseInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Product | ProductInfoDto |
None. |
|
| Target | TargetInfoDto |
None. |
|
| Owner | OwnerInfoDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"StartDate": "2026-09-11T03:32:08.9369113+00:00",
"EndDate": "2026-09-11T03:32:08.9369113+00:00",
"Product": {
"Id": "ccd90d44-cc51-4bc8-a0fa-4d705603e9cc",
"Isbn": "sample string 2",
"ProductKey": "sample string 3",
"IsActive": true,
"Name": "sample string 5"
},
"Target": {
"Id": "c26a4401-bead-43dd-b8e9-ffa61a61d84b",
"UserGroupId": "16bc2f30-172a-49b2-82fc-3a6d90c84ed5",
"UserGroupName": "sample string 3"
},
"Owner": {
"Id": "4132c8f8-8615-48d8-822e-7ccf1aee3a31",
"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>2026-09-11T03:32:08.9369113+00:00</StartDate>
<EndDate>2026-09-11T03:32:08.9369113+00:00</EndDate>
<Product>
<Id>ccd90d44-cc51-4bc8-a0fa-4d705603e9cc</Id>
<Isbn>sample string 2</Isbn>
<ProductKey>sample string 3</ProductKey>
<IsActive>true</IsActive>
<Name>sample string 5</Name>
</Product>
<Target>
<Id>c26a4401-bead-43dd-b8e9-ffa61a61d84b</Id>
<UserGroupId>16bc2f30-172a-49b2-82fc-3a6d90c84ed5</UserGroupId>
<UserGroupName>sample string 3</UserGroupName>
</Target>
<Owner>
<Id>4132c8f8-8615-48d8-822e-7ccf1aee3a31</Id>
<Identifier>sample string 2</Identifier>
<Name>sample string 3</Name>
</Owner>
</GetLicenseInfoResponse>