Hierarchy

  • SignupUrlParams

Properties

Optional refresh

refresh: undefined | false | true

Generate a new unique invitation code.

const inviteUrl = await Namespace.portal.signupUrl( Context.data.user_profile, {
   refresh: true 
}); 

The old link becomes inactive.

Optional withSign

withSign: undefined | false | true

Create URL without confirmation of contact details.

const inviteUrl = await Namespace.portal.signupUrl( Context.data.user_profile, {
   withSign: true 
}); 

A link of this type doesn’t require additional confirmation of the email address by the user.