POST api/v1/admin/AdminUser/ChangePassword
后台用户修改密码
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| changePasswordReq | 所要修改密码信息 |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"oldPassword": "sample string 1",
"newPassword": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"status": 0,
"friendlyMessage": "sample string 1",
"message": "sample string 2",
"requestId": "fd3a0ea803fe4bac82c11432a4ee3739",
"appOwnerId": 0
}