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

    Interface GetLogResponseContent

    interface GetLogResponseContent {
        date?: LogDate;
        type?: string;
        description?: string;
        connection?: string;
        connection_id?: string;
        client_id?: string;
        client_name?: string;
        ip?: string;
        hostname?: string;
        user_id?: string;
        user_name?: string;
        audience?: string;
        scope?: string;
        strategy?: string;
        strategy_type?: string;
        log_id?: string;
        isMobile?: boolean;
        details?: LogDetails;
        user_agent?: string;
        security_context?: LogSecurityContext;
        location_info?: LogLocationInfo;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    date?: LogDate
    type?: string

    Type of event.

    description?: string

    Description of this event.

    connection?: string

    Name of the connection the event relates to.

    connection_id?: string

    ID of the connection the event relates to.

    client_id?: string

    ID of the client (application).

    client_name?: string

    Name of the client (application).

    ip?: string

    IP address of the log event source.

    hostname?: string

    Hostname the event applies to.

    user_id?: string

    ID of the user involved in the event.

    user_name?: string

    Name of the user involved in the event.

    audience?: string

    API audience the event applies to.

    scope?: string

    Scope permissions applied to the event.

    strategy?: string

    Name of the strategy involved in the event.

    strategy_type?: string

    Type of strategy involved in the event.

    log_id?: string

    Unique ID of the event.

    isMobile?: boolean

    Whether the client was a mobile device (true) or desktop/laptop/server (false).

    details?: LogDetails
    user_agent?: string

    User agent string from the client device that caused the event.

    security_context?: LogSecurityContext
    location_info?: LogLocationInfo