Outbound SIP gateway_id
# support
a
v
@amir The value for "your-gateway-id" should be the unique identifier for your SIP gateway. This is typically provided by your SIP service provider. It's a string that represents the gateway within their network, allowing the SIP service to route your outbound calls correctly through their infrastructure. If you're unsure what your SIP gateway ID is, you should consult the documentation provided by your SIP service provider or reach out to their support team for assistance. They will be able to provide you with the specific details required to configure your outbound SIP settings correctly.
You can continue this conversation by mentioning me in the message.
a
We're just trying to trigger outbound calls through Vapi API -- how about in that case? Reason we're setting up SIP is to send DTMF tones through it, because default method doesn't seem to work for some phone calls.
@User
s
@amir Gateway address can be used in two ways either as IPV4 Address like 1.1.1.1or as Web Adrress like my-sip-trunk.pstn.twilio.com both work fine.
example
Copy code
json
{
    "provider": "byo-sip-trunk",
    "name": "VAPI trunk",
    "gateways": [
        {
            "ip": "111.111.111.11",
            "port": 5061,
            "inboundEnabled": true,
            "outboundEnabled": true
        },
        {
            "ip": "1.1.1.1"
        },
        {
            "ip": "my-sip-trunk.pstn.twilio.com"
        }
    ]
}
Because of no response closing this ticket!!
2 Views