affine_change_password
Update user password securely using a reset token received via email. Provide the token, user ID, and new password to complete the process.
Instructions
Change user password (requires token from email).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newPassword | Yes | New password | |
token | Yes | Password reset token from email | |
userId | No | User ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"newPassword": {
"description": "New password",
"type": "string"
},
"token": {
"description": "Password reset token from email",
"type": "string"
},
"userId": {
"description": "User ID",
"type": "string"
}
},
"required": [
"token",
"newPassword"
],
"type": "object"
}