POST api/Authentication/authenticate

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
Authenticate
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Userid": "sample string 1",
  "Password": "sample string 2",
  "IMEI": "sample string 3"
}

application/xml, text/xml

Sample:
<Authenticatereq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <IMEI>sample string 3</IMEI>
  <Password>sample string 2</Password>
  <Userid>sample string 1</Userid>
</Authenticatereq>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "stus": "sample string 1",
  "Msg": "sample string 2",
  "SessionID": "sample string 3"
}

application/xml, text/xml

Sample:
<Authenticateresp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <Msg>sample string 2</Msg>
  <SessionID>sample string 3</SessionID>
  <stus>sample string 1</stus>
</Authenticateresp>