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-06-25T17:33:20.310083+00:00",
"EndDate": "2026-06-25T17:33:20.310083+00:00",
"Product": {
"Id": "126bbd71-900e-4d7f-9d94-3f2a6ce3ccd1",
"Isbn": "sample string 2",
"ProductKey": "sample string 3",
"IsActive": true,
"Name": "sample string 5"
},
"Target": {
"Id": "554191eb-1f80-473e-97e9-9049f0d32d95",
"UserGroupId": "aa788a73-e21b-47ba-b805-eb0b98047415",
"UserGroupName": "sample string 3"
},
"Owner": {
"Id": "c3b5ed80-eef5-481c-b31d-8c8439e7ef66",
"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-06-25T17:33:20.310083+00:00</StartDate>
<EndDate>2026-06-25T17:33:20.310083+00:00</EndDate>
<Product>
<Id>126bbd71-900e-4d7f-9d94-3f2a6ce3ccd1</Id>
<Isbn>sample string 2</Isbn>
<ProductKey>sample string 3</ProductKey>
<IsActive>true</IsActive>
<Name>sample string 5</Name>
</Product>
<Target>
<Id>554191eb-1f80-473e-97e9-9049f0d32d95</Id>
<UserGroupId>aa788a73-e21b-47ba-b805-eb0b98047415</UserGroupId>
<UserGroupName>sample string 3</UserGroupName>
</Target>
<Owner>
<Id>c3b5ed80-eef5-481c-b31d-8c8439e7ef66</Id>
<Identifier>sample string 2</Identifier>
<Name>sample string 3</Name>
</Owner>
</GetLicenseInfoResponse>