Nicolay_Pilgui
05/16/2026, 5:57 PMChiranjeet Mishra
05/16/2026, 5:57 PMMatt
05/16/2026, 6:03 PMNicolay_Pilgui
05/16/2026, 8:25 PMNicolay_Pilgui
05/16/2026, 8:29 PMMatt
05/16/2026, 8:54 PMChiranjeet Mishra
05/18/2026, 1:55 PMvapi-pstn.nickpilgui.voximplant.com
is resolving differently depending on geographic location. From Vapi’s infrastructure, the DNS resolution currently returns:
185.164.149.100
(Voximplant RU SBC)
instead of:
3.147.160.1
(the US SBC where your application is hosted)
Because the INVITEs are reaching the RU SBC, which does not recognize/configure your trunk, Voximplant responds with SIP 500 Internal Server Error.
Recommended fix:
Use the explicit SBC IP directly instead of the geo-routed hostname.
Example:
curl -X PATCH "https://api.vapi.ai/credential/f7495eed-f03b-4eb7-b2f8-620418490a13" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"gateways": [{
"ip": "3.147.160.14",
"port": 5060,
"outboundEnabled": true
}]
}'
If the existing credential does not reprovision correctly after PATCH, we recommend deleting and recreating the credential using the explicit IP from the start.