POST api/Users/GetLogin

Request Information

URI Parameters

None.

Body Parameters

LoginModel
NameDescriptionTypeAdditional information
Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2"
}

text/html

Sample:
{"Username":"sample string 1","Password":"sample string 2"}

application/xml, text/xml

Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <Password>sample string 2</Password>
  <Username>sample string 1</Username>
</LoginModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponceData
NameDescriptionTypeAdditional information
TotalCount

integer

None.

Message

string

None.

Success

boolean

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "Message": "sample string 2",
  "Success": true,
  "Data": {}
}

text/html

Sample:
{"TotalCount":1,"Message":"sample string 2","Success":true,"Data":{}}

application/xml, text/xml

Sample:
<ResponceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Formatter">
  <Data />
  <Message>sample string 2</Message>
  <Success>true</Success>
  <TotalCount>1</TotalCount>
</ResponceData>