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-05-03T10:35:31.1260553+00:00",
"EndDate": "2026-05-03T10:35:31.1260553+00:00",
"Product": {
"Id": "66ad74bc-1e06-4fd4-a349-7d8e5e804a40",
"Isbn": "sample string 2",
"ProductKey": "sample string 3",
"IsActive": true,
"Name": "sample string 5"
},
"Target": {
"Id": "65c23915-19c1-43b8-9e90-bd03d2f0b4d4",
"UserGroupId": "468fcb73-f32e-4fcb-9db7-8b0dad20ead0",
"UserGroupName": "sample string 3"
},
"Owner": {
"Id": "ba2628d1-55d5-44ea-9e3c-abfe100e480c",
"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-05-03T10:35:31.1260553+00:00</StartDate>
<EndDate>2026-05-03T10:35:31.1260553+00:00</EndDate>
<Product>
<Id>66ad74bc-1e06-4fd4-a349-7d8e5e804a40</Id>
<Isbn>sample string 2</Isbn>
<ProductKey>sample string 3</ProductKey>
<IsActive>true</IsActive>
<Name>sample string 5</Name>
</Product>
<Target>
<Id>65c23915-19c1-43b8-9e90-bd03d2f0b4d4</Id>
<UserGroupId>468fcb73-f32e-4fcb-9db7-8b0dad20ead0</UserGroupId>
<UserGroupName>sample string 3</UserGroupName>
</Target>
<Owner>
<Id>ba2628d1-55d5-44ea-9e3c-abfe100e480c</Id>
<Identifier>sample string 2</Identifier>
<Name>sample string 3</Name>
</Owner>
</GetLicenseInfoResponse>