POST /{BASE}/user/me/passwdUpdate/change the password for the current user.
- HTTP Example:
POST /{BASE}/user/me/passwd
oldPasswd=…&newPasswd=… | - API Example:
UserWebService.passwd({'oldPasswd': , 'newPasswd': }); |
- Output:
- Response - 200 OK on success
- Form parameters:
- oldPasswd - the old (current) password.
- newPasswd - the new password
- HTTP return codes:
- 404 - if the current account could not be loaded
- 403 - if the old pasword did not match
|