Hierarchy
- SignupUrlParams
Properties
Optional refresh
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
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.
Parameters for generating a URL for user registration
These parameters are used in the Portal.signupUrl method.