POST api/License/CheckLicense

Request Information

URI Parameters

None.

Body Parameters

CheckLicenseReq
NameDescriptionTypeAdditional information
LicenseGUID

string

None.

ProcessorId

string

None.

MacAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "licenseGUID": "sample string 1",
  "processorId": "sample string 2",
  "macAddress": "sample string 3"
}

application/xml, text/xml

Sample:
<CheckLicenseReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eGateLicenseManagementSystem.Models">
  <LicenseGUID>sample string 1</LicenseGUID>
  <MacAddress>sample string 3</MacAddress>
  <ProcessorId>sample string 2</ProcessorId>
</CheckLicenseReq>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseStatus
NameDescriptionTypeAdditional information
Status

string

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<ResponseStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/eGateLicenseManagementSystem.Models">
  <Data />
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</ResponseStatus>