cybernavigator#0
12/01/2025, 8:49 PMVapi Support Bot
12/01/2025, 8:50 PMcybernavigator#0
12/01/2025, 8:54 PMcybernavigator#0
12/01/2025, 9:13 PMAjcreator01
12/01/2025, 9:18 PMcybernavigator#0
12/01/2025, 10:02 PMChiranjeet Mishra
12/03/2025, 3:03 PMvoip.eutelia.it
- Port: 5060
- Authentication: Use your phone number as the username and the provided password.
2. **Create a SIP Trunk Credential with Vapi**:
Use the Vapi API to create a new credential with your Eutelia details:
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": "Eutelia Trunk",
"gateways": [{
"ip": "voip.eutelia.it",
"port": 5060,
"inboundEnabled": false
}],
"outboundAuthenticationPlan": {
"authUsername": "YOUR_PHONE_NUMBER",
"authPassword": "YOUR_SIP_PASSWORD"
}
}'
3. **Associate a Phone Number**:
Link your phone number to the created SIP trunk credential:
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": "Eutelia Number",
"number": "YOUR_PHONE_NUMBER",
"numberE164CheckEnabled": false,
"credentialId": "YOUR_CREDENTIAL_ID"
}'
4. **Test the SIP Trunk**:
Ensure your SIP configuration correctly routes both inbound and outbound calls. For inbound calls, ensure Eutelia forwards them to the SIP URI format: sip:{phoneNumber}@sip.vapi.ai.
If you're still facing issues, double-check your credentials and network configuration to ensure the IP addresses provided by Vapi are allowlisted in your network settings. Let me know if you need further assistance.