MonoCloud Management SDK
    Preparing search index...

    Interface UserIpAccessDetails

    User IP Access Details: Returns sign-in activity for a specific IP address.

    UserIpAccessDetails

    interface UserIpAccessDetails {
        block_until?: number | null;
        failure_count: number;
        ip: string;
        last_sign_in_attempt: number;
        sign_in_attempts_count: number;
    }
    Index

    Properties

    block_until?: number | null

    Specifies the time until which sign-in attempts from this IP address are blocked (in Epoch).

    UserIpAccessDetails

    failure_count: number

    Consecutive sign-in failures from this IP address since the last successful sign-in.

    UserIpAccessDetails

    ip: string

    The IP address from which sign-in attempts were made.

    UserIpAccessDetails

    last_sign_in_attempt: number

    Specifies the time of the most recent sign-in attempt from this IP address (in Epoch).

    UserIpAccessDetails

    sign_in_attempts_count: number

    Total number of sign-in attempts from this IP address.

    UserIpAccessDetails