Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface UserAuthenticationMethod

    interface UserAuthenticationMethod {
        id: string;
        type: Management.AuthenticationMethodTypeEnum;
        confirmed?: boolean;
        name?: string;
        authentication_methods?: UserAuthenticationMethodProperties[];
        preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum;
        link_id?: string;
        phone_number?: string;
        email?: string;
        key_id?: string;
        public_key?: string;
        created_at: string;
        enrolled_at?: string;
        last_auth_at?: string;
        credential_device_type?: string;
        credential_backed_up?: boolean;
        identity_user_id?: string;
        user_agent?: string;
    }
    Index

    Properties

    id: string

    The ID of the authentication method (auto generated)

    confirmed?: boolean

    The authentication method status

    name?: string

    A human-readable label to identify the authentication method

    authentication_methods?: UserAuthenticationMethodProperties[]
    preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum
    link_id?: string

    The ID of a linked authentication method. Linked authentication methods will be deleted together.

    phone_number?: string

    Applies to phone authentication methods only. The destination phone number used to send verification codes via text and voice.

    email?: string

    Applies to email and email-verification authentication methods only. The email address used to send verification messages.

    key_id?: string

    Applies to webauthn authentication methods only. The ID of the generated credential.

    public_key?: string

    Applies to webauthn authentication methods only. The public key.

    created_at: string

    Authenticator creation date

    enrolled_at?: string

    Enrollment date

    last_auth_at?: string

    Last authentication

    credential_device_type?: string

    Applies to passkeys only. The kind of device the credential is stored on as defined by backup eligibility. "single_device" credentials cannot be backed up and synced to another device, "multi_device" credentials can be backed up if enabled by the end-user.

    credential_backed_up?: boolean

    Applies to passkeys only. Whether the credential was backed up.

    identity_user_id?: string

    Applies to passkeys only. The ID of the user identity linked with the authentication method.

    user_agent?: string

    Applies to passkeys only. The user-agent of the browser used to create the passkey.