Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions fern/server-url/events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ For inbound phone calls, you can specify the assistant dynamically. If a PhoneNu
}
```

<Note>
You must respond to the `assistant-request` webhook within <strong>7.5 seconds end-to-end</strong>. This limit is fixed and not configurable: the telephony provider enforces a 15-second cap, and Vapi reserves ~7.5 seconds for call setup. The timeout value shown elsewhere in the dashboard does not apply to this webhook.

To avoid timeouts:
- Return quickly with an existing <code>assistantId</code> or a minimal assistant, then enrich context asynchronously after the call starts using <a href="/calls/call-features">Live Call Control</a>.
- Host your webhook close to <code>us-west-2</code> to reduce latency, and target &lt; ~6s to allow for network jitter.
</Note>

Respond with either an existing assistant ID, a transient assistant, or transfer destination:

```json
Expand Down
Loading