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-03-02T03:30:46.3091591+00:00",
"EndDate": "2026-03-02T03:30:46.3091591+00:00",
"Product": {
"Id": "92fb6569-2e8f-4bf5-99cb-7c18ba7f807b",
"Isbn": "sample string 2",
"ProductKey": "sample string 3",
"IsActive": true,
"Name": "sample string 5"
},
"Target": {
"Id": "f662095a-2a09-4eec-a648-75c6cf3fcc77",
"UserGroupId": "07c47b43-48a6-4265-a32d-d9140636ad1e",
"UserGroupName": "sample string 3"
},
"Owner": {
"Id": "efab96b4-18c8-4e53-9625-6483657cc803",
"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-03-02T03:30:46.3091591+00:00</StartDate>
<EndDate>2026-03-02T03:30:46.3091591+00:00</EndDate>
<Product>
<Id>92fb6569-2e8f-4bf5-99cb-7c18ba7f807b</Id>
<Isbn>sample string 2</Isbn>
<ProductKey>sample string 3</ProductKey>
<IsActive>true</IsActive>
<Name>sample string 5</Name>
</Product>
<Target>
<Id>f662095a-2a09-4eec-a648-75c6cf3fcc77</Id>
<UserGroupId>07c47b43-48a6-4265-a32d-d9140636ad1e</UserGroupId>
<UserGroupName>sample string 3</UserGroupName>
</Target>
<Owner>
<Id>efab96b4-18c8-4e53-9625-6483657cc803</Id>
<Identifier>sample string 2</Identifier>
<Name>sample string 3</Name>
</Owner>
</GetLicenseInfoResponse>