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

    Type Alias VerifyEmailRequest

    Request parameters for verifying the user's email with an OTP.

    {
    email: 'user@example.com',
    otp: '123456'
    }
    type VerifyEmailRequest = {
        email: string;
        otp: string;
    }
    Index

    Properties

    Properties

    email: string

    The email address to verify.

    otp: string

    The one-time password (OTP) entered by the user.