Sajid Ali
12/05/2025, 3:14 PMVapi Support Bot
12/05/2025, 3:15 PMtransportConfigurations in your call request:
json
{
"transportConfigurations": [
{
"provider": "twilio",
"timeout": 60,
"record": false,
"recordingChannels": "mono"
}
]
}
Double-check that you are using the correct phoneNumberId for your imported Twilio number in your API call. For more details, see the [Vapi documentation](https://docs.vapi.ai/api-reference/calls/create-phone-call).
Sources:
- [Vapi API Reference: Create Phone Call](https://docs.vapi.ai/api-reference/calls/create-phone-call)
- [Vapi Phone Calling Guide](https://docs.vapi.ai/phone-calling)Chiranjeet Mishra
12/07/2025, 4:46 PMtransportConfigurations. Here's a basic example:
json
{
"transportConfigurations": [
{
"provider": "twilio",
"timeout": 60,
"record": false,
"recordingChannels": "mono"
}
]
}
Make sure the phoneNumberId in your API call corresponds to the imported Twilio number.
3. Twilio SIP Trunk: Set up a SIP trunk for Twilio if you're encountering issues with calls not connecting. This is not always highlighted but can be necessary for certain setups, especially for international calls. You can follow instructions from the [Twilio SIP Trunk integration guide](https://docs.vapi.ai/advanced/sip/twilio).
If calls through Vapi's free numbers are working but not with the Twilio number, reviewing these configurations should help resolve the issue.Sajid Ali
12/08/2025, 4:59 PMSajid Ali
12/08/2025, 4:59 PMChiranjeet Mishra
12/16/2025, 10:19 PM