POST api/admin/Login?name={name}&pass={pass}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

Required

pass

string

Required

Body Parameters

None.

Response Information

Resource Description

UserResponse
NameDescriptionTypeAdditional information
status

boolean

None.

responseMessage

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "responseMessage": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<UserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoetAPI">
  <data />
  <responseMessage>sample string 2</responseMessage>
  <status>true</status>
</UserResponse>