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

    Interface CreateGuardianEnrollmentTicketRequestContent

    {
    * user_id: "user_id"
    * }
    interface CreateGuardianEnrollmentTicketRequestContent {
        user_id: string;
        email?: string;
        send_mail?: boolean;
        email_locale?: string;
        factor?: Management.GuardianEnrollmentFactorEnum;
        allow_multiple_enrollments?: boolean;
    }
    Index

    Properties

    user_id: string

    user_id for the enrollment ticket

    email?: string

    alternate email to which the enrollment email will be sent. Optional - by default, the email will be sent to the user's default address

    send_mail?: boolean

    Send an email to the user to start the enrollment

    email_locale?: string

    Optional. Specify the locale of the enrollment email. Used with send_email.

    allow_multiple_enrollments?: boolean

    Optional. Allows a user who has previously enrolled in MFA to enroll with additional factors.
    Note: Parameter can only be used with Universal Login; it cannot be used with Classic Login or custom MFA pages.