Problem statement
Post User Registration Action is not triggered.
Troubleshooting
Please check the following.
- Post User Registration Action status is
DEPLOYED
instead ofBUILT
. - Post User Registration Action is added to Flow.
- Check the connection types since Post User Registration Actions are for Database and Passwordless connections, not for external identity providers (e.g., Social or Enterprise connections).
- Install Real-time Webtask Logs Extension .
- Create a sample Action for testing.
exports.onExecutePostUserRegistration = async (event, api) => {
console.log(event.user);
};
- Sign up for a new user via your application or POST /api/v2/users Management API endpoint.
- Check if Real-time Webtask Logs Extension displays the outputs of console.log statement.
- If the outputs of console.log statement is displayed, Post User Registration Action is trigerred. If nothing is displayed, uninstall and reinstall Real-time Webtask Logs Extension. Then, try step 6 to 7.
Solution
Please try the troubleshooting steps. If it still doesn’t solve the issue, please contact Auth0 Support.