Appearance
On password updated
You can use this event to notify users that their password has changed, log the change for auditing, or alert them if the update wasn’t expected.
Interface actions that fire the
On password updated eventUse Cases
- Send a confirmation email/SMS letting the user know their password changed
- Invalidate old sessions and refresh tokens (optional policy)
- Log an audit event and store metadata (ip, user agent)
- Alert security tools for monitoring
Event data
| Display Key | Example Value | Description |
|---|---|---|
| user | { id: "b20fd6fd-...", email: "user@example.com" } | The user who updated their password. |
Example payload
json
{
"user": {
"id": "b20fd6fd-aa0a-44c2-8429-2e39cc4d59b4",
"email": "user@example.com"
}
}Tips
- Keep this trigger fast; defer heavy work to background jobs if needed.
- If you end sessions, clearly communicate it in the email so users aren’t surprised.

