Interface NormalizedCallError

An unrecoverable error occurred during the call.

interface NormalizedCallError {
    eventId: string;
    providerCallId: string;
    timestamp: number;
    kind: "call-error";
    error: string;
}

Hierarchy

  • NormalizedEventBase
    • NormalizedCallError

Properties

eventId: string

Provider-assigned event ID for idempotency.

providerCallId: string

Provider-assigned call ID.

timestamp: number

Unix timestamp (ms).

kind: "call-error"
error: string

Error description.