Interface ExternalEventLogRecord

interface ExternalEventLogRecord {
    id: string;
    userId: string;
    user?: Customer;
    externalEventSubscriptionId: string;
    externalEventSubscription?: ExternalEventSubscription;
    integrationId: string;
    integration?: Integration;
    connectionId: string;
    connection?: Connection;
    payload?: any;
    launchedFlowRunIds?: string[];
    status: ExternalEventLogStatus;
    error?: ErrorData;
}

Properties

id: string
userId: string
user?: Customer
externalEventSubscriptionId: string
externalEventSubscription?: ExternalEventSubscription
integrationId: string
integration?: Integration
connectionId: string
connection?: Connection
payload?: any
launchedFlowRunIds?: string[]
error?: ErrorData