dylan
02/01/2026, 6:54 PMChiranjeet Mishra
02/01/2026, 6:54 PMVapi Support Bot
02/01/2026, 6:55 PM+1234567890) and try calling it directly from your Twilio console. If the direct call fails or returns a 403 Forbidden, the issue is likely with number formatting or Twilio permissions—correct the format or update permissions as needed before retrying the transfer.
Example:
+14155552671
According to the documentation, this is the most common cause for successful Vapi transfers that fail at the provider level ([see guide](https://docs.vapi.ai/phone-calling/in-call-control/transfer-calls/debug-forwarding-drops)).
Source:
- [Debug call forwarding drops](https://docs.vapi.ai/phone-calling/in-call-control/transfer-calls/debug-forwarding-drops)dylan
02/01/2026, 6:55 PMdylan
02/01/2026, 7:13 PMVapi Support Bot
02/01/2026, 7:14 PM"inboundEnabled": true and that your Twilio Termination URI is correctly allowlisted in both Twilio and Vapi. Here’s an example API call:
json
{
"provider": "byo-sip-trunk",
"name": "Twilio Trunk",
"gateways": [
{
"ip": "simplementary-vapi.pstn.twilio.com",
"inboundEnabled": true
}
],
"outboundLeadingPlusEnabled": true
}
If you still receive a "SIP gateway creation failed" error, double-check that all required IPs are allowlisted and that your SIP URI is correct—this is the most common cause for this error according to the documentation ([see guide](https://docs.vapi.ai/phone-calling/in-call-control/transfer-calls/debug-forwarding-drops)).
Sources:
- [Debug call forwarding drops](https://docs.vapi.ai/phone-calling/in-call-control/transfer-calls/debug-forwarding-drops)
- [SIP Trunking](https://docs.vapi.ai/advanced/sip/sip-trunk)dylan
02/01/2026, 7:18 PMdylan
02/01/2026, 7:19 PMVapi Support Bot
02/01/2026, 7:20 PM"ip" field in your Vapi credential exactly matches your Twilio Termination SIP URI (including spelling and domain), as even a minor mismatch will cause the "SIP gateway creation failed" error. For example:
json
{
"provider": "byo-sip-trunk",
"name": "Twilio Trunk",
"gateways": [
{
"ip": "simplementary-vapi.pstn.twilio.com",
"inboundEnabled": true
}
],
"outboundLeadingPlusEnabled": true
}
If the error persists, try recreating the trunk with a new, unique name and confirm the domain is correct in both Twilio and Vapi ([see documentation](https://docs.vapi.ai/advanced/sip/twilio)).
Source:
- [Twilio SIP Integration](https://docs.vapi.ai/advanced/sip/twilio)James Christopher
02/02/2026, 1:37 PMdylan
02/02/2026, 3:59 PMdylan
02/02/2026, 4:00 PMJames Christopher
02/02/2026, 4:54 PMHam
02/02/2026, 7:26 PMdylan
02/03/2026, 12:05 AMJames Christopher
02/03/2026, 4:24 AMdylan
02/03/2026, 12:37 PMVapi Support Bot
02/03/2026, 12:39 PM"ip" field in your Vapi credential exactly matches your Twilio Termination SIP URI (including spelling and domain), as even a minor mismatch will cause the "SIP gateway creation failed" error. Here’s the recommended payload:
json
{
"provider": "byo-sip-trunk",
"name": "Twilio Trunk",
"gateways": [
{
"ip": "simplementary-vapi.pstn.twilio.com",
"inboundEnabled": true
}
],
"outboundLeadingPlusEnabled": true
}
If this still fails, the next best step is to proceed with private troubleshooting as previously suggested, since the issue may be due to deeper configuration or credential validation details ([see documentation](https://docs.vapi.ai/advanced/sip/twilio)).
Source:
- [Twilio SIP Integration](https://docs.vapi.ai/advanced/sip/twilio)dylan
02/04/2026, 11:50 AMEvadora (Vapi)
02/04/2026, 5:16 PMNomadiction
04/15/2026, 11:37 PM