Hans
05/22/2025, 5:21 PMVapi Support Bot
05/22/2025, 5:22 PMdestination
parameter—is essential for transferCall
to work. Without it, the call will not be forwarded. Here’s a minimal example:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+1234567890"], // Replace with your number
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Be sure to include this in your tool configuration for successful call transfers.
Sources:
- [Vapi documentation: call forwarding](https://docs.vapi.ai/call-forwarding)
- [Vapi SIP Trunking Telnyx external number call forwarding troubleshooting](https://discord.com/channels/1211482211119796234/1343963959421829172)Vapi Support Bot
05/22/2025, 5:24 PMVapi Support Bot
05/22/2025, 5:24 PMHans
05/22/2025, 5:26 PMKings_big💫
05/22/2025, 5:48 PMHans
05/22/2025, 5:54 PMHans
05/22/2025, 5:58 PMparameters
config ?
Or am I going something wrong ? 🤔
https://cdn.discordapp.com/attachments/1375161681763631186/1375170894330200084/image.png?ex=6830b732&is=682f65b2&hm=157184f1617b33ed5d1a13432cfe28a661ea63c23d48e945220c85510e264cf9&Kings_big💫
05/22/2025, 6:18 PMHans
05/22/2025, 9:05 PMKyle
05/23/2025, 4:51 AMHans
05/27/2025, 3:11 PMVapi Support Bot
05/27/2025, 3:12 PMdestination
parameter in your transferCall
function, even if calls appear to work without it. This ensures predictable behavior, especially as your configuration grows. Example:
json
{
"function": {
"name": "transferCall",
"parameters": {
"destination": "+15308891500"
}
}
}
This approach avoids ambiguity and supports custom messages and transfer plans per destination.
Sources:
- [Call Forwarding Documentation](https://docs.vapi.ai/call-forwarding)
- [Default Tools: Transfer Call](https://docs.vapi.ai/tools/default-tools#transfer-call)Vapi Support Bot
05/27/2025, 3:12 PMdestination
parameter in your transferCall
tool configuration.
Here's a recommended example:
json
{
"function": {
"name": "transferCall",
"parameters": {
"destination": "+15308891500"
}
}
}
This ensures your call is routed as intended, regardless of any fallback behaviors Vapi may apply if parameters are omitted.
Sources:
- [Call Forwarding Documentation](https://docs.vapi.ai/call-forwarding)
- [Default Tools: Transfer Call](https://docs.vapi.ai/tools/default-tools#transfer-call)Kyle
05/28/2025, 3:20 AMyaok
06/21/2025, 12:47 AMKyle
06/23/2025, 8:04 PM