MonoCloud Management SDK
    Preparing search index...

    User Summary: A lightweight user representation returned in list operations.

    UserSummary

    interface UserSummary {
        block_until?: number | null;
        claims: Record<string, any>;
        connections: UserConnection[];
        creation_time: number;
        disabled: boolean;
        emails: UserEmail[];
        external_providers: UserExternalProviderSummary[];
        failure_count: number;
        force_password_reset: boolean;
        has_password: boolean;
        last_activity?: number | null;
        last_known_city?: string | null;
        last_known_country?: string | null;
        last_known_region?: string | null;
        last_sign_in_attempt?: number | null;
        last_sign_in_attempt_ip?: string | null;
        last_sign_in_success?: number | null;
        last_sign_in_success_ip?: string | null;
        last_updated: number;
        passkeys: UserPasskey[];
        password_updated_at?: number | null;
        phone_numbers: UserPhone[];
        sign_in_attempts_count: number;
        sign_in_success_count: number;
        user_id: string;
        username?: UserUsername | null;
    }
    Index

    Properties

    block_until?: number | null

    Specifies the time at which the user will be unblocked (in Epoch).

    UserSummary

    claims: Record<string, any>

    Claims associated with the user.

    UserSummary

    connections: UserConnection[]

    Connections linked to this user.

    UserSummary

    creation_time: number

    Specifies the creation time of the user (in Epoch).

    UserSummary

    disabled: boolean

    Indicates whether the account has been disabled.

    UserSummary

    emails: UserEmail[]

    List of registered emails of the user.

    UserSummary

    external_providers: UserExternalProviderSummary[]

    External provider profiles linked to this user.

    UserSummary

    failure_count: number

    Consecutive sign-in failures since the last successful sign-in.

    UserSummary

    force_password_reset: boolean

    A flag indicating whether the user must change their password on next sign-in.

    UserSummary

    has_password: boolean

    Indicates whether the user has a password set.

    UserSummary

    last_activity?: number | null

    Specifies the time of the last recorded user activity (in Epoch).

    UserSummary

    last_known_city?: string | null

    Last recorded city for the user.

    UserSummary

    last_known_country?: string | null

    Last recorded country for the user.

    UserSummary

    last_known_region?: string | null

    Last recorded region for the user.

    UserSummary

    last_sign_in_attempt?: number | null

    Specifies the time of the last sign-in attempt (in Epoch).

    UserSummary

    last_sign_in_attempt_ip?: string | null

    IP address of the last sign-in attempt.

    UserSummary

    last_sign_in_success?: number | null

    Specifies the time of the last successful sign-in (in Epoch).

    UserSummary

    last_sign_in_success_ip?: string | null

    IP address of the last successful sign-in.

    UserSummary

    last_updated: number

    Specifies the last update time of the user (in Epoch).

    UserSummary

    passkeys: UserPasskey[]

    List of registered passkeys of the user.

    UserSummary

    password_updated_at?: number | null

    Specifies the time of the last password update (in Epoch).

    UserSummary

    phone_numbers: UserPhone[]

    List of registered phones of the user.

    UserSummary

    sign_in_attempts_count: number

    Total sign-in attempts recorded for the user.

    UserSummary

    sign_in_success_count: number

    Total successful sign-ins recorded for the user.

    UserSummary

    user_id: string

    The unique identifier of the user.

    UserSummary

    username?: UserUsername | null

    Registered username for the user.

    UserSummary