MyAccount Management
//
Update a Password
OAuth 2.0 scope:
- okta.myAccount.password.manage
Updates a password. The user needs to know the current password to change it.
POST
curl -i -X POST \
https://okta-subdomain.pixtulate.com/idp/myaccount/password/change-password \
-H 'Accept: application/json; okta-version=1.0.0' \
-H 'Content-Type: application/json' \
-d '{
"oldPassword": "Abcd1234",
"newPassword": "Abcd12345"
}'