> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usesimple.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Call Completed

> Webhook event sent when a call is completed

# Call Completed Webhook

The `call.completed` webhook is sent when a call has been completed.

### Payload

<ParamField body="event_type" type="string" required>
  The type of the webhook event. Will be "call.completed".
</ParamField>

<ParamField body="event_id" type="string" required>
  Unique identifier for this webhook event.
</ParamField>

<ParamField body="payload" type="object" required>
  <Expandable title="payload">
    <ParamField body="call_id" type="string" required>
      The unique identifier (UUID) for the call.
    </ParamField>

    <ParamField body="attempt" type="integer" required>
      The attempt number for this webhook delivery.
    </ParamField>
  </Expandable>
</ParamField>

### Example

```json theme={null}
{
  "event_type": "call.completed",
  "event_id": "evt_Wqb1k73rXprtTm7Qdlr38G",
  "payload": {
    "call_id": "123e4567-e89b-12d3-a456-426614174000",
    "attempt": 2
  }
}
```
