@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface LogEventSuccess

    Success response - events received and queued for processing

    interface LogEventSuccess {
        events_received: number;
        events_processed: number;
        partial_failures?: { event_id: string; code: string; message: string }[];
        warnings?: string[];
        match_quality?: number;
        sandbox?: boolean;
        context?: ContextObject;
        ext?: ExtensionObject;
    }
    Index

    Properties

    events_received: number

    Number of events received

    0

    events_processed: number

    Number of events successfully queued for processing

    0

    partial_failures?: { event_id: string; code: string; message: string }[]

    Events that failed validation

    Type Declaration

    • event_id: string

      ID of the failed event

    • code: string

      Error code

    • message: string

      Human-readable error message

    warnings?: string[]

    Non-fatal issues (low match quality, missing recommended fields, deprecation notices)

    match_quality?: number

    Overall match quality score for the batch (0.0 = no matches, 1.0 = all matched)

    0

    1

    sandbox?: boolean

    When true, this response contains simulated data from sandbox mode.

    context?: ContextObject
    ext?: ExtensionObject