@grabjs/superapp-sdk
    Preparing search index...

    Type Alias VerifyEmailRequest

    Request parameters for verifying the user's email.

    Both properties are optional. If email is provided and skipUserInput is true, the verify OTP bottom sheet will be triggered directly without user editing.

    type VerifyEmailRequest = {
        email?: string;
        skipUserInput?: boolean;
    }
    Index

    Properties

    email?: string

    Email address used for profile verification (for example, "john.doe@example.com").

    skipUserInput?: boolean

    Whether to skip email input and proceed directly to verification.