GET API/Licenses/{ID}

Returns license structures.

Request Information

URI Parameters

Name Description Type Additional Information
id License unique identifier string Required

Body Parameters

None.

Response Information

Resource Description

Name Description Type Additional Information
ID License Unique Identifier string None
Number License number integer None
ComputerName - string None
OperatingSystem - string None
IsTrial A license type: true is trial license, false is paid license boolean None
IsTaken The license in use or not boolean None
LicenseType The License Type string None
DateExpired The License Expiration Date date None
Transaction Transaction of License string None
User User Attached to a License string None
UserID User Unique Identifier string None

Response Formats

application/json, text/json

{
  "ID": "sample string 1",
  "Number": 2,
  "ComputerName": "sample string 3",
  "OperatingSystem": "sample string 4",
  "IsTrial": true,
  "IsTaken": true,
  "LicenseType": "sample string 7",
  "DateExpired": "2019-08-28T11:07:01.0922535+00:00",
  "Transaction": "sample string 9",
  "User": "sample string 10",
  "UserID": "sample string 11"
}

application/xml, text/xml

<LicensesModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MBSAPImvc.Engine.Models">
  <ComputerName>sample string 3</ComputerName>
  <DateExpired>2019-08-28T11:07:01.0922535+00:00</DateExpired>
  <ID>sample string 1</ID>
  <IsTaken>true</IsTaken>
  <IsTrial>true</IsTrial>
  <LicenseType>sample string 7</LicenseType>
  <Number>2</Number>
  <OperatingSystem>sample string 4</OperatingSystem>
  <Transaction>sample string 9</Transaction>
  <User>sample string 10</User>
  <UserID>sample string 11</UserID>
</LicensesModels>
https://git.cloudberrylab.com/egor.m/doc-help-mbs.git