POST api/v1/LoginExists

Request Information

URI Parameters

None.

Body Parameters

LoginExistInput
NameDescriptionTypeAdditional information
UserID

integer

None.

LocID

integer

None.

CompID

integer

None.

DeviceID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "LocID": 2,
  "CompID": 3,
  "DeviceID": 4
}

application/xml, text/xml

Sample:
<LoginExistInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <CompID>3</CompID>
  <DeviceID>4</DeviceID>
  <LocID>2</LocID>
  <UserID>1</UserID>
</LoginExistInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'LoginExistInput'.

Response Information

Resource Description

LoginExistsModel
NameDescriptionTypeAdditional information
LoginExists

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "LoginExists": 1
}

application/xml, text/xml

Sample:
<LoginExistsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <LoginExists>1</LoginExists>
</LoginExistsModel>