React Native Auth0 - v5.5.0
    Preparing search index...

    Interface LoginSmsParameters

    Parameters for completing passwordless login with an SMS code/OTP.

    interface LoginSmsParameters {
        headers?: Record<string, string>;
        phoneNumber: string;
        code: string;
        audience?: string;
        scope?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    headers?: Record<string, string>

    Optional custom headers to be included in the request.

    phoneNumber: string
    code: string
    audience?: string
    scope?: string