@auth0/nextjs-auth0 - v4.21.0
    Preparing search index...

    Interface PasswordlessVerifyTokenResponse

    Token response returned by Auth0 after a successful passwordless OTP verification. Uses snake_case to match Auth0 API and SPA SDK conventions.

    interface PasswordlessVerifyTokenResponse {
        access_token: string;
        expires_in: number;
        id_token?: string;
        refresh_token?: string;
        scope?: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string

    Access token

    expires_in: number

    Expires in seconds

    id_token?: string

    ID token

    refresh_token?: string

    Refresh token (if offline_access scope was granted)

    scope?: string

    Granted scope

    token_type: string

    Token type (usually "Bearer")