URGENT: Client Demo in 1 Hour - Please Unlock Inte...
# support
s
Hi Team, I have a critical client demo in less than 2 hours. I have already upgraded my account to Paid and added credits (Balance: ~$19). My US outbound calls are working perfectly (I tested them). However, I am getting the 'International Number' error when trying to call my client in Georgia (+995) and Belgium (+32). I am using this Paid Number ID: [55257227-2cc4-4449-8146-1a2d6d36ee79] Please whitelist my account for International Dialing immediately so I don't fail this demo. Thank you
v
To enable international calling, you must import your own number from Twilio. Here's how to do it via API:
Copy code
bash
curl -X POST https://api.vapi.ai/phone-numbers/import \
  -H "Authorization: Bearer YOUR_VAPI_PRIVATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "twilio",
    "number": "+YOUR_TWILIO_NUMBER",
    "twilioAccountSid": "YOUR_TWILIO_ACCOUNT_SID",
    "twilioAuthToken": "YOUR_TWILIO_AUTH_TOKEN"
  }'
Once imported, use this number for international calls. See more: [Vapi Phone Calling Docs](https://docs.vapi.ai/phone-calling) Source: - [Phone Calling | Vapi Docs](https://docs.vapi.ai/phone-calling)
2 Views