Member Junction
    Preparing search index...

    Raw LearnWorlds API user shape (snake_case)

    interface LWApiUser {
        _id?: string;
        avatar_url?: string;
        bio?: string;
        course_stats?: {
            completed?: number;
            in_progress?: number;
            total?: number;
            total_time_spent?: number;
        };
        created?: string
        | number;
        created_at?: string;
        custom_fields?: Record<string, unknown>;
        email: string;
        first_name?: string;
        full_name?: string;
        id?: string;
        is_active?: boolean;
        last_login?: string | number;
        last_name?: string;
        location?: string;
        login_url?: string;
        reset_password_url?: string;
        role?: string;
        send_welcome_email?: boolean;
        status?: string;
        tags?: string[];
        timezone?: string;
        username?: string;
    }
    Index

    Properties

    _id?: string
    avatar_url?: string
    bio?: string
    course_stats?: {
        completed?: number;
        in_progress?: number;
        total?: number;
        total_time_spent?: number;
    }
    created?: string | number
    created_at?: string
    custom_fields?: Record<string, unknown>
    email: string
    first_name?: string
    full_name?: string
    id?: string
    is_active?: boolean
    last_login?: string | number
    last_name?: string
    location?: string
    login_url?: string
    reset_password_url?: string
    role?: string
    send_welcome_email?: boolean
    status?: string
    tags?: string[]
    timezone?: string
    username?: string