Interface WebhookParseResult

Result of parsing a provider webhook into normalized events.

interface WebhookParseResult {
    events: NormalizedCallEvent[];
    rawData?: unknown;
}

Properties

Properties

Normalized events extracted from the webhook.

rawData?: unknown

Provider-specific raw data for debugging.