Change a User Password

post/accountmanager.changepassword/{userId}

Changes a specified user's password.

The authenticated user needs the ADMIN (including USERADMIN) permissions to perform this action. To change your own password, use the /accountmanager.changepassword endpoint instead.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
userId
required
string

Enter the ID of the user whose password you want to change. The userId is the typedId without the U suffix. For example, userId of the 2147490806.U is 2147490806.

Example: 2147490806
Request Body schema: application/json
required
object
newPassword
required
string non-empty
Responses
200

OK

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