ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface EdiAlertRule

    interface EdiAlertRule {
        id: string;
        partnerId?: string | null;
        name: string;
        description?: string | null;
        isActive: boolean;
        triggerType: string;
        messageType?: EdiMessageType | null;
        direction?: EdiDirection | null;
        thresholdValue: number;
        thresholdUnit: string;
        windowMinutes: number;
        severity: string;
        notifyEmails: string[];
        notifyWebhook?: string | null;
        notifySlack?: string | null;
        notifyTeams?: string | null;
        pausePartner: boolean;
        cooldownMinutes: number;
        lastTriggeredAt?: string | null;
        triggerCount: number;
        createdAt: string;
        updatedAt: string;
    }
    Index

    Properties

    id: string
    partnerId?: string | null
    name: string
    description?: string | null
    isActive: boolean
    triggerType: string
    messageType?: EdiMessageType | null
    direction?: EdiDirection | null
    thresholdValue: number
    thresholdUnit: string
    windowMinutes: number
    severity: string
    notifyEmails: string[]
    notifyWebhook?: string | null
    notifySlack?: string | null
    notifyTeams?: string | null
    pausePartner: boolean
    cooldownMinutes: number
    lastTriggeredAt?: string | null
    triggerCount: number
    createdAt: string
    updatedAt: string