POST api/v1/LoginExists
Request Information
URI Parameters
None.
Body Parameters
LoginExistInput| Name | Description | Type | Additional 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:
Response Information
Resource Description
LoginExistsModel| Name | Description | Type | Additional 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>