Webhook Events
Call Completed
Get notified when a call is completed
The call.completed
webhook event is triggered whenever a call is finished. This can be used to track call duration, direction, and capture call summaries for reporting and analytics.
Payload
Properties
Property | Type | Description |
---|---|---|
event | string | The webhook event type (call.completed ). |
data.leadId | string | The unique identifier for the lead. |
data.phone | string | The phone number of the lead. |
data.profile | string | The customer profile assigned to the lead. |
data.callId | string | The unique identifier for the completed call. |
data.durationSeconds | number | The duration of the call in seconds. |
data.direction | string | The call direction: INBOUND or OUTBOUND . |
data.summary | string | undefined | Optional summary of the call conversation. |
timestamp | string | The ISO 8601 timestamp when the call was completed. |