confirm_email_change
Verify and finalize email address changes using a confirmation token and password. Ensures secure user account updates within the specified collection.
Instructions
Confirm email change with token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | No | Collection name (default: users) | users |
password | Yes | Current password for confirmation | |
token | Yes | Email change token |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"default": "users",
"description": "Collection name (default: users)",
"type": "string"
},
"password": {
"description": "Current password for confirmation",
"type": "string"
},
"token": {
"description": "Email change token",
"type": "string"
}
},
"required": [
"token",
"password"
],
"type": "object"
}