I have a requirement to do some external work when someone changes their email address. Is there a place where I can hook into the email change that would trigger/signal my custom code to run?
I have a requirement to do some external work when someone changes their email address. Is there a place where I can hook into the email change that would trigger/signal my custom code to run?
Hi Chris,
You would need to use the User Before Update Events .
https://community.telligent.com/community/11/w/api-documentation/64105/users-in-process-api-service
And just to add, there are multiple ways to handle this event: plugins, web hooks, or (the simplest), automations.
The standard approach would be to handle the before update event, retrieve the matching user's existing record, and compare with the updated email address to see if the update event represents that specific change.
And just to add, there are multiple ways to handle this event: plugins, web hooks, or (the simplest), automations.
The standard approach would be to handle the before update event, retrieve the matching user's existing record, and compare with the updated email address to see if the update event represents that specific change.