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

# Dial Transcript Finalized

This webhook is triggered when a dial transcript is finalized.

## Event Type

`dial.transcript`

## Payload

<table>
  <thead>
    <tr><th width="247">Name</th><th>Type</th><th>Description</th></tr>
  </thead>

  <tbody>
    <tr><td><code>dial\_id</code></td><td>string</td><td>The ID of the created dial.</td></tr>
    <tr><td><code>transcript</code></td><td><code>\{text: string, speaker: 'AI' | 'HUMAN', detailType?: string}\[]</code></td>
    <td>The finalized transcript.</td></tr>
  </tbody>
</table>

## Example Message

```
{
    "event": "dial.transcript",
    "payload": {
        "dial_id": "5a6c6190-db20-4d8e-86a9-79a6af292dea",
        "transcript": [{
            "text": "Hello?",
            "speaker": "HUMAN"
        }]
    }
}
```
