Interface LoginWithSMSOptions

The options for completing the passwordless login with SMS request

interface LoginWithSMSOptions {
    audience?: string;
    code: string;
    phoneNumber: string;
    scope?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

audience?: string

Optional API audience to request

code: string

The code numeric value (OTP)

phoneNumber: string

The phone number where the code was received

scope?: string

Optional scopes to request

Generated using TypeDoc