POST api/Password/update
Request Information
URI Parameters
None.
Body Parameters
updataFpPostName | Description | Type | Additional information |
---|---|---|---|
machineid | string |
None. |
|
logid | integer |
None. |
|
usermobile | string |
None. |
|
managemobile | string |
None. |
|
data | string |
None. |
|
id | integer |
None. |
|
tel |
登录账号 |
string |
None. |
token |
token |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "machineid": "sample string 1", "logid": 1, "usermobile": "sample string 2", "managemobile": "sample string 3", "data": "sample string 4", "id": 5, "tel": "sample string 6", "token": "sample string 7" }
application/xml, text/xml
Sample:
<updataFpPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ALINPU.Controllers"> <tel xmlns="http://schemas.datacontract.org/2004/07/ALINPU.Models">sample string 6</tel> <token xmlns="http://schemas.datacontract.org/2004/07/ALINPU.Models">sample string 7</token> <id xmlns="http://schemas.datacontract.org/2004/07/ALINPU.Models">5</id> <data>sample string 4</data> <logid>1</logid> <machineid>sample string 1</machineid> <managemobile>sample string 3</managemobile> <usermobile>sample string 2</usermobile> </updataFpPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResultName | Description | Type | Additional information |
---|---|---|---|
code |
状态码,200成功,300错误,400缺少参数,500没有权限,301数据不存在... |
integer |
None. |
msg |
成功或者错误的说明,例如:登录成功,token过期... |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "code": 1, "msg": "sample string 2" }
application/xml, text/xml
Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ALINPU.Models"> <code>1</code> <msg>sample string 2</msg> </BaseResult>