reset_user_password_direct
Reset a user's password directly by providing a new value, or generate a random password with customizable length and enforce change on next sign-in.
Instructions
Reset a user's password with a specific password value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | The unique identifier of the user | |
| password | No | The new password to set for the user (if None and generate_password is True, a random password will be generated) | |
| password_length | No | Length of the generated password if generate_password is True (default: 12) | |
| generate_password | No | Whether to generate a random secure password (default: False) | |
| require_change_on_next_sign_in | No | Whether to require the user to change password on next sign-in (default: True) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||