Password Change (v2.1.0)

Command that will change a password in the identity provider.

Overview

This command in the Authentication adapter, can be used to change the password for a User or Application. When a password is changed it will not invalidated previously generated tokens. This means that if password is changed due to possible breach, it should be done after a logout has been issued.

Architecture diagram

Payload example

Payload example
{
"User": "user@example.com",
"OldSecret": "oldPassword123",
"NewSecret": "newPassword456"
}

JSON Schema

4 properties
User string
required

User ID.

OldSecret string
required

Old password.

NewSecret string
required

New password.

Code stringnull

Code received by the user.