ReminD ^ CX
02/03/2026, 8:12 AMVapi Support Bot
02/03/2026, 8:13 AMcall.start.error-get-transport error means Vapi cannot retrieve transport (SIP trunk) info for outbound calls. Please ensure your phone number is correctly associated with your SIP trunk credential in Vapi.
Here's a sample API call to link your phone number to the SIP trunk:
bash
curl -X POST "https://api.vapi.ai/phone-number" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_VAPI_PRIVATE_KEY" \
-d '{
"provider": "byo-phone-number",
"name": "Your Number",
"number": "YOUR_PHONE_NUMBER",
"credentialId": "YOUR_SIP_TRUNK_CREDENTIAL_ID"
}'
Double-check this association in your dashboard to resolve the outbound issue.
For more details, see the [Vapi call ended reason documentation](https://docs.vapi.ai/calls/call-ended-reason).
Sources:
- [Call ended reason documentation](https://docs.vapi.ai/calls/call-ended-reason)
- [SIP trunk setup documentation](https://docs.vapi.ai/advanced/sip/sip-trunk)James Christopher
02/03/2026, 11:25 AMChiranjeet Mishra
02/03/2026, 4:54 PM