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

    Interface EdiLog

    interface EdiLog {
        id: string;
        partnerId?: string | null;
        messageId?: string | null;
        interchangeId?: string | null;
        idocId?: string | null;
        level: EdiLogLevel;
        event: EdiLogEvent;
        category?: string | null;
        description: string;
        details?: Record<string, unknown> | null;
        errorCode?: string | null;
        errorCategory?: string | null;
        stackTrace?: string | null;
        userId?: string | null;
        ipAddress?: string | null;
        sessionId?: string | null;
        correlationId?: string | null;
        durationMs?: number | null;
        segmentName?: string | null;
        segmentPosition?: number | null;
        fieldName?: string | null;
        fieldValue?: string | null;
        expectedValue?: string | null;
        createdAt: string;
    }
    Index

    Properties

    id: string
    partnerId?: string | null
    messageId?: string | null
    interchangeId?: string | null
    idocId?: string | null
    category?: string | null
    description: string
    details?: Record<string, unknown> | null
    errorCode?: string | null
    errorCategory?: string | null
    stackTrace?: string | null
    userId?: string | null
    ipAddress?: string | null
    sessionId?: string | null
    correlationId?: string | null
    durationMs?: number | null
    segmentName?: string | null
    segmentPosition?: number | null
    fieldName?: string | null
    fieldValue?: string | null
    expectedValue?: string | null
    createdAt: string