POST User/Logon

判断可以登录

Request Information

URI Parameters

None.

Body Parameters

LogonPars
NameDescriptionTypeAdditional information
phone

手机号

string

None.

pwd

密码

string

None.

unionid

微信openid

string

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": {
    "phone": "sample string 1",
    "pwd": "sample string 2",
    "unionid": "sample string 3"
  },
  "msg": null
}

application/xml, text/xml

Sample:
<LogonPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter">
  <phone>sample string 1</phone>
  <pwd>sample string 2</pwd>
  <unionid>sample string 3</unionid>
</LogonPars>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

判断可以登录

string

Response Formats

application/json, text/json

Sample:
{
  "code": "200",
  "data": "sample string 1",
  "msg": null
}

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>