POST api/upLawInfopwd_ForAPP

更新密码

Request Information

URI Parameters

None.

Body Parameters

uplaypwdmodel
NameDescriptionTypeAdditional information
mobile

手机号

string

None.

pwd

加密后的密码

string

None.

code

验证码

string

None.

Request Formats

application/json, text/json

Sample:
{
  "mobile": "sample string 1",
  "pwd": "sample string 2",
  "code": "sample string 3"
}

application/xml, text/xml

Sample:
<uplaypwdmodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Controllers">
  <code>sample string 3</code>
  <mobile>sample string 1</mobile>
  <pwd>sample string 2</pwd>
</uplaypwdmodel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BackMessage
NameDescriptionTypeAdditional information
sign

标志

boolean

None.

message

信息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "sign": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<BackMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <message>sample string 2</message>
  <sign>true</sign>
</BackMessage>