GET api/License

Get License Information

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LicenseDates
NameDescriptionTypeAdditional information
Module

Modules

None.

Start

date

None.

End

date

None.

Type

LicenseType

None.

Loaned

For Web licenses only

boolean

None.

Response Formats

Sample:
[
  {
    "Module": "WorkRequest",
    "Start": "2024-03-18T00:00:00",
    "End": "2024-04-18T00:00:00",
    "Type": "UseIt"
  },
  {
    "Module": "Web",
    "Start": "2024-03-01T00:00:00",
    "End": "2024-12-31T00:00:00",
    "Loaned": true
  }
]
Sample:
<ArrayOfLicenseDates xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models.Parametrizacao">
  <LicenseDates>
    <End>2024-04-18T00:00:00</End>
    <Loaned i:nil="true" />
    <Module>WorkRequest</Module>
    <Start>2024-03-18T00:00:00</Start>
    <Type>UseIt</Type>
  </LicenseDates>
  <LicenseDates>
    <End>2024-12-31T00:00:00</End>
    <Loaned>true</Loaned>
    <Module>Web</Module>
    <Start>2024-03-01T00:00:00</Start>
    <Type i:nil="true" />
  </LicenseDates>
</ArrayOfLicenseDates>
Sample:

Sample not available.