Redirect user to custom signup flow

We are using new universal login experience with custom signup flow. We accept extra information apart from email and password as part of signup. Order of signup is, accept email(verify email) and then password and then extra information. If user drops out after password and tries to login then we want to redirect user to signup flow. Is there a way to achieve it?

Hi @rajivk

Yes, you can accomplish this with Redirect Actions and app_metadata:

Basically, you only set the app_metadata.initialized to true after receiving the extra information, and the redirect action is invoked when it is not true.
The redirect action should redirect to a “mini web app” that gathers the additional info.

John