Member Junction
    Preparing search index...

    Summary of a single integration run for UI display

    interface RunStatusSummary {
        CompanyIntegrationID: string;
        DurationSeconds: number;
        EndedAt: string;
        IntegrationName: string;
        RecordsCreated: number;
        RecordsErrored: number;
        RecordsUpdated: number;
        RunByUser: string;
        RunID: string;
        StartedAt: string;
        Status: "Pending" | "In Progress" | "Success" | "Failed";
        TotalRecords: number;
    }
    Index

    Properties

    CompanyIntegrationID: string

    Company Integration ID

    DurationSeconds: number

    Duration in seconds (computed on the client from StartedAt/EndedAt)

    EndedAt: string

    When the run ended (null if still running)

    IntegrationName: string

    Integration display name

    RecordsCreated: number

    Records created

    RecordsErrored: number

    Records that had errors

    RecordsUpdated: number

    Records updated

    RunByUser: string

    Who triggered the run

    RunID: string

    Run ID

    StartedAt: string

    When the run started

    Status: "Pending" | "In Progress" | "Success" | "Failed"

    Current run status

    TotalRecords: number

    Total records processed