Hello everyone,
I’m evaluating whether to use a Rule or an Action to let our application know to create a user record when someone registers through Auth0.
As far as I know, with a rule I would add some metadata onto the response to our client from Auth0, or even use the login count to determine if a user has just registered.
With Actions I was considering using the post-user-registration trigger to send an HTTP request to our application server, but I can’t find any information on what happens if our application doesn’t respond or sends back an HTTP error code.
Will the action be retried multiple times? Will it fail silently? Would I need to build my own retry logic?
The only example I’ve seen for the slack notifier doesn’t mention anything about the error path, only the success path.
If there is no ability to have automated retries, like you would get with conventional webhooks, then I’ll just use a rule, but I’d like to know what happens if anyone knows.
Thank you for reading,
Cameron