Soma_Szileczki
05/28/2025, 6:59 AMVapi Support Bot
05/28/2025, 7:00 AMdestination parameter to your function definition:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+36701234567"],
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Update your function with this, and your call transfer should work as expected.
If you're using SIP trunking, also make sure SIP REFER is enabled with your provider.
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)! AetherMind
05/28/2025, 8:41 AMVapi Support Bot
05/28/2025, 8:42 AMdestination parameter as shown below:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+36701234567"],
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Add this to your function, and your call transfer should work as expected.
If you're using SIP trunking, also ensure SIP REFER is enabled with your provider.
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)! AetherMind
05/28/2025, 8:55 AMVapi Support Bot
05/28/2025, 8:56 AMChiranjeet Mishra
05/29/2025, 1:33 AMDX4HAF
05/29/2025, 4:32 PMVapi Support Bot
05/29/2025, 4:33 PMdestination parameter. Updating your function parameters to include "destination" as shown below should help resolve the problem:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+36701234567"],
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Once you add this, your call transfer should work as expected. If you're using SIP trunking, make sure SIP REFER is enabled with your provider. Let me know if you continue to experience issues after making this change!
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)Chiranjeet Mishra
05/30/2025, 1:41 PMDX4HAF
06/09/2025, 10:38 PMDX4HAF
06/09/2025, 10:41 PMDX4HAF
06/10/2025, 3:25 AMDX4HAF
06/10/2025, 1:54 PMChiranjeet Mishra
06/10/2025, 6:57 PMDX4HAF
06/10/2025, 9:04 PMShubham Bajaj
06/12/2025, 12:35 AMDX4HAF
06/14/2025, 3:00 AMDX4HAF
06/14/2025, 3:01 AMChiranjeet Mishra
06/17/2025, 12:38 AM