Text based Conversation Handover to human
# support
h
Hi everyone! Do we also have text-based conversation handover to a human in Vapi?
v
Yes, Vapi supports conversation handover using the Handoff Tool, which can route text-based conversations to another assistant or a webhook (which could connect to a human agent). Example:
Copy code
json
{
  "type": "handoff",
  "destination": {
    "type": "webhook",
    "url": "https://your-server.com/handoff"
  },
  "context": "lastNMessages"
}
You can configure the webhook to notify a human agent and pass relevant context for a seamless handover. For more details, see the [Handoff Tool documentation](https://docs.vapi.ai/changelog/2025/8/14). Source: - [August 14, 2025 Changelog](https://docs.vapi.ai/changelog/2025/8/14)
v
Message marked as helpful by @hijaz! 🎉
3 Views