jaxson_ruff
06/03/2025, 5:57 PMVapi Support Bot
06/03/2025, 5:59 PMtransferCall tool includes the required destination property and that your SIP trunk supports SIP REFER. If SIP REFER is not enabled or supported, the call will end after the transfer message. Here’s an example of the correct parameters section for your tool:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+1234567890"], // Replace with your external number in E.164 format
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Make sure your SIP provider supports SIP REFER for transfers, as Vapi does not support alternative SIP verbs for call transfers.
[Reference: Vapi documentation and support](https://docs.vapi.ai/call-forwarding)
Sources:
- [Vapi documentation: call forwarding](https://docs.vapi.ai/call-forwarding)
- [Vapi SIP Trunking Telnyx external number call forwarding troubleshooting (Discord)](https://discord.com/channels/1211482211119796234/1343963959421829172)Vapi Support Bot
06/03/2025, 5:59 PMtransferCall tool includes the required destination property and that your SIP trunk supports SIP REFER. If SIP REFER is not enabled or supported, the call will end after the transfer message. Here’s an example of the correct parameters section for your tool:
json
"parameters": {
"type": "object",
"properties": {
"destination": {
"type": "string",
"enum": ["+1234567890"], // Replace with your external number in E.164 format
"description": "The destination to transfer the call to."
}
},
"required": ["destination"]
}
Make sure your SIP provider supports SIP REFER for transfers, as Vapi does not support alternative SIP verbs for call transfers.
[Reference: Vapi documentation and support](https://docs.vapi.ai/call-forwarding)
Sources:
- [Vapi documentation: call forwarding](https://docs.vapi.ai/call-forwarding)
- [Vapi SIP Trunking Telnyx external number call forwarding troubleshooting (Discord)](https://discord.com/channels/1211482211119796234/1343963959421829172)Vapi
06/04/2025, 4:14 PM