How do i change password with old password?
I can see API to reset password by sending email to user.
But i couldn’t see any API to change password with user’s old password. The request may look like below.
At this time there is no endpoint that given the current user password would allow to directly change it for a new one; you can somewhat replicate that behavior by leveraging the Management API and by performing an authentication operation as means to validate existing password, but it would require custom implementation and the appropriate configuration to make it work.
As additional information, this ability/endpoint is something that I have seen discussed and likely to be available in a more direct manner in the future, however, for now I can’t provide any definitive information about if/when it will be available.
Thanks for replying. Our team is running into the same issue with us wanting a validate a users request with their current password input before the user can update it to a new password.