Generate sign-up link, so other users can join a team

Hi all

I can’t find an answer for this… But I have an app where users sometimes have to sign up 100s of users to their own team, so instead of signing all of them up manually a better solution would be for the user to just use a link that others can sign up from. So when signing up by using that link the user would need to be tied to the correct team. How do I do that? :open_mouth:

1 Like

Add some unique generated string to the Team data type, for example T2mpXrg, so when your user will share the link yourapp.com?team=T2mpXrg - you’ll be able to extract this unique string from URL and match the user with an appropriate team during sign up process.

1 Like