GET api/License/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

LicenseModel
NameDescriptionTypeAdditional information
RecId

integer

None.

Licensor

string

None.

Licensee

string

None.

LicenseType

string

None.

LicenseNo

string

None.

Expiration

date

None.

Response Formats

application/json, text/json

Sample:
{
  "RecId": 1,
  "Licensor": "sample string 2",
  "Licensee": "sample string 3",
  "LicenseType": "sample string 4",
  "LicenseNo": "sample string 5",
  "Expiration": "2025-06-18T06:40:07.4167328-07:00"
}

application/xml, text/xml

Sample:
<LicenseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CapceMobile.Models">
  <Expiration>2025-06-18T06:40:07.4167328-07:00</Expiration>
  <LicenseNo>sample string 5</LicenseNo>
  <LicenseType>sample string 4</LicenseType>
  <Licensee>sample string 3</Licensee>
  <Licensor>sample string 2</Licensor>
  <RecId>1</RecId>
</LicenseModel>