SIP TRUNK FOR MY BUSINESS NUMBER
# support
s
I am trying to setup SIP trunk because Twilio doesn't support UAE number so i need to setup import my UAE business number
v
To help you set up your UAE business number with a SIP trunk in Vapi, could you please confirm if you already have a SIP provider that supports UAE numbers, or do you need recommendations for compatible providers? Source: - [SIP Trunking Guide](https://docs.vapi.ai/advanced/sip/sip-trunk)
s
@Vapi Support Bot i dont have any sip provider
v
To proceed, you’ll need to find a SIP provider that supports UAE numbers and offers SIP trunking. Once you have chosen a provider, gather your SIP server address and credentials, then use the following example to create a SIP trunk credential in Vapi:
Copy code
bash
curl -X POST "https://api.vapi.ai/credential" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_VAPI_PRIVATE_KEY" \
  -d '{
    "provider": "byo-sip-trunk",
    "name": "Your SIP Trunk",
    "gateways": [{"ip": "YOUR_SIP_PROVIDER_DOMAIN"}],
    "outboundAuthenticationPlan": {
      "authUsername": "YOUR_SIP_USERNAME",
      "authPassword": "YOUR_SIP_PASSWORD"
    }
  }'
Start by researching SIP providers that support UAE numbers, then use the above to connect your number to Vapi. Source: - [SIP Trunking Guide](https://docs.vapi.ai/advanced/sip/sip-trunk)