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

    Interface CreateUserAuthenticationMethodRequestContent

    {
    * type: "phone"
    * }
    interface CreateUserAuthenticationMethodRequestContent {
        type: Management.CreatedUserAuthenticationMethodTypeEnum;
        name?: string;
        totp_secret?: string;
        phone_number?: string;
        email?: string;
        preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum;
        key_id?: string;
        public_key?: string;
        aaguid?: string;
        relying_party_identifier?: string;
        credential_device_type?: Management.CredentialDeviceTypeEnum;
        credential_backed_up?: boolean;
        identity_user_id?: string;
        user_agent?: string;
        user_handle?: string;
        transports?: string[];
    }
    Index

    Properties

    name?: string

    A human-readable label to identify the authentication method.

    totp_secret?: string

    Base32 encoded secret for TOTP generation.

    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 authentication methods only. The email address used to send verification messages.

    preferred_authentication_method?: Management.PreferredAuthenticationMethodEnum
    key_id?: string

    Applies to webauthn/passkey authentication methods only. The id of the credential.

    public_key?: string

    Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64.

    aaguid?: string

    Applies to passkeys only. Authenticator Attestation Globally Unique Identifier

    relying_party_identifier?: string

    Applies to webauthn authentication methods only. The relying party identifier.

    credential_device_type?: Management.CredentialDeviceTypeEnum
    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.

    user_handle?: string

    Applies to passkeys only. The user handle of the user identity.

    transports?: string[]

    Applies to passkeys only. The transports used by clients to communicate with the authenticator.