Igor
09/30/2025, 1:14 PMVapi Support Bot
09/30/2025, 1:15 PM"inboundEnabled": false. To enable inbound calls, update your credential as follows:
json
"gateways": [
{ "ip": "pbx.zadarma.com", "inboundEnabled": true }
]
Also, make sure Zadarma is forwarding calls to 35725123150@sip.vapi.ai in their portal. This should resolve the "Number not found" issue for inbound calls ([source](https://docs.vapi.ai/advanced/sip/zadarma)).
Source:
- [Zadarma SIP Integration](https://docs.vapi.ai/advanced/sip/zadarma)Igor
09/30/2025, 1:32 PMChiranjeet Mishra
10/02/2025, 12:08 PMbash
curl -L 'https://api.vapi.ai/credential' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_PRIVATE_KEY' \
-d '{
"provider": "byo-sip-trunk",
"name": "Zadarma Trunk",
"gateways": [
{ "ip": "sip.zadarma.com", "inboundEnabled": false }
],
"outboundLeadingPlusEnabled": true,
"outboundAuthenticationPlan": {
"authUsername": "YOUR_SIP_NUMBER",
"authPassword": "YOUR_SIP_PASSWORD"
}
}'
Replace placeholders with your actual details.
3. Add Your Virtual Number to Vapi.ai
- Associate your virtual number with the SIP trunk in Vapi.ai using this command:
bash
curl -L 'https://api.vapi.ai/phone-number' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_PRIVATE_KEY' \
-d '{
"provider": "byo-phone-number",
"name": "Zadarma Number",
"number": "YOUR_VIRTUAL_NUMBER",
"numberE164CheckEnabled": false,
"credentialId": "YOUR_CREDENTIAL_ID"
}'
Replace placeholders with your actual details.
4. Assign Your Voice Assistant to Handle Calls
- In your Vapi.ai dashboard, go to the Build section, select Phone Numbers, and assign your voice assistant to handle incoming and outgoing calls.
5. Configure Incoming Call Reception in Zadarma
- Log in to your Zadarma account, go to Settings → Virtual phone numbers, and set up call forwarding to YOUR_VIRTUAL_NUMBER@sip.vapi.ai.
For more details, you can refer to [Zadarma SIP Integration](https://docs.vapi.ai/advanced/sip/zadarma).Igor
10/13/2025, 3:10 PMChiranjeet Mishra
10/15/2025, 9:23 AMIgor
10/15/2025, 10:56 AM