POST api/UserMaster/CheckUserNamePassword

Request Information

URI Parameters

None.

Body Parameters

UserCheckRequest
NameDescriptionTypeAdditional information
UserName

string

None.

password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "password": "sample string 2"
}

application/xml, text/xml

Sample:
<UserCheckRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveTextBooksModel.Entity">
  <UserName>sample string 1</UserName>
  <password>sample string 2</password>
</UserCheckRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserCheckResponse
NameDescriptionTypeAdditional information
UserId

integer

None.

responseCode

integer

None.

responseMessage

string

None.

UserName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "responseCode": 2,
  "responseMessage": "sample string 3",
  "UserName": "sample string 4"
}

application/xml, text/xml

Sample:
<UserCheckResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LiveTextBooksModel.Entity">
  <UserId>1</UserId>
  <UserName>sample string 4</UserName>
  <responseCode>2</responseCode>
  <responseMessage>sample string 3</responseMessage>
</UserCheckResponse>