Interface NormalizedCallFailed

The provider could not place or maintain the call.

interface NormalizedCallFailed {
    eventId: string;
    providerCallId: string;
    timestamp: number;
    kind: "call-failed";
    reason?: string;
}

Hierarchy

  • NormalizedEventBase
    • NormalizedCallFailed

Properties

eventId: string

Provider-assigned event ID for idempotency.

providerCallId: string

Provider-assigned call ID.

timestamp: number

Unix timestamp (ms).

kind: "call-failed"
reason?: string

Human-readable failure reason from the provider.