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

# Payloads

> Payloads for each webhook event

## Calls

#### Example webhook payload

We only support calls for now, and we're planning on adding text messages soon. Reach out to [support@penciled.com](mailto:support@penciled.com) if you need text message support.

```typescript theme={null}
export type WebhookPayload = {
  type: "call",
  data: Call
}
```
