Sign in

Change password

documented

Changes a user's password.

POST /api/v1/users/{id}/credentials/change_passwordUsersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$okta_domain}}/api/v1/users/{{$user_id}}/credentials/change_password" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"oldPassword": "{{$oldPassword}}", "newPassword": "{{$newPassword}}", "revokeSessions": {{$revokeSessions}}}'
Change password · Okta · OpenIntegrations