Yavuz Kömeçoğlu
04/14/2025, 5:46 AMVapi Support Bot
04/14/2025, 5:48 AMsipVerb parameter to "invite" within the transferPlan for your SIP destination. Here's how to do it:
json
{
"destinations": [
{
"type": "sip",
"sipUri": "sip:your-sip-uri-here",
"transferPlan": {
"mode": "blind-transfer",
"sipVerb": "invite"
}
}
]
}
This configuration will cause Vapi to use SIP INVITE when transferring the call to your specified SIP URI instead of using the default REFER method [source](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1337383511329345588).
When implementing this, make sure to:
1. Keep your existing SIP URI configuration
2. Add the transferPlan object if you don't already have it
3. Set the mode to "blind-transfer" (or another appropriate mode for your use case)
4. Add the sipVerb parameter with the value "invite"
Is there anything else you'd like to know about configuring call forwarding with the INVITE method?
Source:
- [Discord thread about using SIP INVITE with Transfer Call tool](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1337383511329345588)Kings_big💫
04/14/2025, 7:57 AMYavuz Kömeçoğlu
04/14/2025, 12:21 PM