Change a Current User Password

post/accountmanager.changepassword

Changes an authenticated user's password.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
required
object
newPassword
required
string [ 1 .. 255 ] characters

The new password.

oldPassword
required
string [ 1 .. 255 ] characters

The current password. Necessary when changing own password.

Responses
200

OK

Response Schema: application/json
object
node
string non-empty
data
any
status
number
Request samples
application/json
{
  • "data": {
    • "newPassword": "eqweqweqwQW112131FF*",
    • "oldPassword": "12345678pwdd9876543"
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": null,
    • "status": 0
    }
}