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-29T02:09:51.1181128+00:00",
"EndDate": "2026-06-29T02:09:51.1181128+00:00",
"Product": {
"Id": "e7d5a40a-543b-4e90-b5be-df3f3c516b33",
"Isbn": "sample string 2",
"ProductKey": "sample string 3",
"IsActive": true,
"Name": "sample string 5"
},
"Target": {
"Id": "2d7a8bef-5459-4546-a7bb-a8bf4f435643",
"UserGroupId": "cf9d27b8-d9f8-44af-9bce-d77c0c85f348",
"UserGroupName": "sample string 3"
},
"Owner": {
"Id": "3e1642bf-a2ac-495b-a4d1-05d5c1cea409",
"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-29T02:09:51.1181128+00:00</StartDate>
<EndDate>2026-06-29T02:09:51.1181128+00:00</EndDate>
<Product>
<Id>e7d5a40a-543b-4e90-b5be-df3f3c516b33</Id>
<Isbn>sample string 2</Isbn>
<ProductKey>sample string 3</ProductKey>
<IsActive>true</IsActive>
<Name>sample string 5</Name>
</Product>
<Target>
<Id>2d7a8bef-5459-4546-a7bb-a8bf4f435643</Id>
<UserGroupId>cf9d27b8-d9f8-44af-9bce-d77c0c85f348</UserGroupId>
<UserGroupName>sample string 3</UserGroupName>
</Target>
<Owner>
<Id>3e1642bf-a2ac-495b-a4d1-05d5c1cea409</Id>
<Identifier>sample string 2</Identifier>
<Name>sample string 3</Name>
</Owner>
</GetLicenseInfoResponse>