POST api/Authentication

Request Information

URI Parameters

None.

Body Parameters

LoginRequestModel
NameDescriptionTypeAdditional information
API_Key

string

None.

Username

string

None.

Password

string

None.

IP

string

None.

Request Formats

application/json, text/json

Sample:
{
  "API_Key": "sample string 1",
  "Username": "sample string 2",
  "Password": "sample string 3",
  "IP": "sample string 4"
}

application/xml, text/xml

Sample:
<LoginRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UserManager.Model">
  <API_Key>sample string 1</API_Key>
  <IP>sample string 4</IP>
  <Password>sample string 3</Password>
  <Username>sample string 2</Username>
</LoginRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModel
NameDescriptionTypeAdditional information
Response

string

None.

Code

integer

None.

Message

string

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Response": "sample string 1",
  "Code": 2,
  "Message": "sample string 3",
  "Data": "sample string 4"
}

application/xml, text/xml

Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UtilityManager.Model">
  <Code>2</Code>
  <Data>sample string 4</Data>
  <Message>sample string 3</Message>
  <Response>sample string 1</Response>
</ResponseModel>