Verification
These are all methods on the SignUp
class that allow you to verify a user's sign-up request.
prepareVerification()
The prepareVerification
is used to initiate the verification process for a field that requires it. As mentioned above, there are two fields that need to be verified:
emailAddress
: The email address can be verified via an email code. This is a one-time code that is sent to the email already provided to the SignUp object. TheprepareVerification
sends this email.phoneNumber
: The phone number can be verified via a phone code. This is a one-time code that is sent via an SMS to the phone already provided to the SignUp object. TheprepareVerification
sends this SMS.
function prepareVerification(params: PrepareVerificationParams): Promise<SignUpResource>;
PrepareVerificationParams
Name | Type | Description |
---|---|---|
strategy | 'phone_code' | 'email_code' | 'email_link' | 'saml' | 'oauth_<provider>' | 'web3_metamask_signature' | The verification strategy to validate the user's sign-up request. The following strategies are supported:
|
redirectUrl | string | The URL to redirect the user to after the verification process is complete. Only supported on email_link , oauth_<provider> , and saml strategies. |
prepareVerification()
returns
Type | Description |
---|---|
Promise<SignUpResource> | This method returns a Promise which resolves to the current SignUp . |
attemptVerification()
Attempts to complete the in-flight verification process that corresponds to the given strategy. In order to use this method, you should first initiate a verification process by calling SignUp.prepareVerification.
Depending on the strategy, the method parameters could differ.
function attemptVerification(params: AttemptVerificationParams): Promise<SignUp>;
AttemptVerificationParams
Name | Type | Description |
---|---|---|
strategy | 'phone_code' | 'email_code' | 'web3_metamask_signature' | The verification strategy to complete the user's sign-up request against. The following strategies are supported:
|
code | string | The code that was sent to the user via the phone_code or email_code verification strategies. |
signature | string | The signature that was sent to the user via the Web3 verification strategy. |
attemptVerification()
returns
Type | Description |
---|---|
Promise<SignUpResource> | This method returns a Promise which resolves to the current SignUp . |
Last updated on March 19, 2024