ts-mailcow-api
    Preparing search index...

    Interface APILog

    API Log item.

    interface APILog {
        data: string;
        method: "GET" | "POST";
        remote: string;
        time: number;
        uri: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data: string

    Payload used in the API call.

    method: "GET" | "POST"

    Request method.

    remote: string

    IP that did the call.

    time: number

    Timestamp in Epoch format.

    uri: string

    API Route used.