Skip to main content

Vobiz SIP Integration Guide — QCall SIP Dialer (Inbound + Outbound)

This guide walks a customer through connecting a Vobiz SIP trunk to QCall so their AI agent can place outbound calls and receive inbound calls on a real phone number. It has two halves:
  • Part A — Vobiz side: buy a number, create a trunk, generate SIP credentials, and get the values QCall needs.
  • Part B — QCall side: add the SIP Dialer in the QCall dashboard, then finish the inbound loop-back on Vobiz.
You need one thing from each side. Vobiz gives you a SIP domain + username + password + phone number. QCall gives you back a SIP URI that Vobiz must forward inbound calls to. That two-way handshake is the whole integration.

How it works (architecture)

  • Outbound = QCall → Vobiz. From QCall’s point of view, Vobiz is where the call terminates into the phone network. That is why QCall calls it the SIP Termination URI.
  • Inbound = Vobiz → QCall. Vobiz must be told to originate the incoming call toward QCall’s SIP address.

Credential cheat-sheet (Vobiz → QCall field mapping)

Fill this in as you go through Part A. You’ll paste the right-hand column into the QCall dashboard in Part B. Then, after saving in QCall, you receive one value to bring back to Vobiz:

Part A — Vobiz: get your SIP credentials & number

Step 1 — Create your Vobiz account

  1. Register at https://console.vobiz.ai (new accounts get free trial credit).
  2. After login, open the dashboard. Note your account-level Auth ID and Auth Token — these authenticate any Vobiz API calls. (You don’t paste these into QCall; they’re only for managing Vobiz itself.)
Vobiz console dashboard after sign-in

Step 2 — Buy a phone number (DID)

  1. In the Vobiz console, go to the DID / Phone Numbers section.
  2. Filter by country/region and pick a number that supports Voice (inbound + outbound).
  3. Purchase it. This number is your caller ID for outbound and your ring-in number for inbound.
  4. Record it in E.164 format with the + and country code — e.g. +919876543210. → This becomes the Phone Number field in QCall.
Vobiz console: buy a Voice-capable DID

Step 3 — Create a SIP trunk

  1. Go to Trunks in the sidebar and click Create.
  2. Give it a name (e.g. qcall-trunk) and set the trunk type to support both directions (you’ll use it for outbound termination and inbound origination).
  3. On save, Vobiz auto-provisions a unique SIP domain in the form {trunk_id}.sip.vobiz.ai (e.g. abc123.sip.vobiz.ai). → This becomes the SIP Termination URI in QCall.
Default trunk settings (transport udp, CPS limit, status active) are fine to start. You can tune concurrency/CPS later.
Vobiz console: create SIP trunk and the generated SIP domain

Step 4 — Create SIP credentials (username + password)

  1. Open your trunk → CredentialsCreate Credential.
  2. Set a username (e.g. qcall_prod) and a strong password (12+ chars, mixed case, digits, symbols).
  3. Copy the password now — Vobiz stores it hashed and will never show it again. If you lose it, you must create a new credential. → Username + password become SIP Username and SIP Password in QCall.
Vobiz also supports IP-based auth. QCall authenticates with username/password, so credential auth is required. (You may additionally IP-whitelist LiveKit’s egress IPs for defense-in-depth, but it’s optional.)

Step 5 — Attach your DID to the trunk

  1. Go to your DID number’s settings and associate it with the trunk you created in Step 3.
  2. Leave the inbound destination for now — you’ll point it at QCall in Part C, after QCall gives you the SIP URI.
At this point you should have all four values for the cheat-sheet: SIP domain, username, password, and DID number.

Part B — QCall dashboard: add the SIP Dialer

This is what a customer actually clicks in the QCall app.
  1. Log in to the QCall dashboard.
  2. Go to Settings → Dialers (the “Dialers” / “Phone Numbers” area).
  3. Click ➕ Add Dialer and choose SIP as the dialer type.
  4. Fill in the form using your cheat-sheet:
  5. Click Create / Save.
What QCall does behind the scenes (no action needed from you):
  • Creates a outbound trunk → sends outbound calls to your Vobiz SIP domain, authenticated with your username/password, using your DID as caller ID.
  • Creates a inbound trunk → matched to your DID number.
  • Creates a dispatch rule → routes incoming calls on that number to your AI agent.
What QCall gives you back: on success, the dialer now exists and QCall exposes your SIP URI (shown in the dialer’s SIP config / setup instructions, format 178.212.35.170:5060). Copy it — you need it for Part C.
If you don’t see the SIP URI in the UI, it’s a fixed value for your QCall workspace — ask QCall support and they’ll provide your SIP domain.

Part C — Vobiz: finish the inbound loop-back

Inbound calls only reach your AI agent once Vobiz knows where to forward them.
  1. Return to the Vobiz console → your trunk (or DID) → inbound routing settings.
  2. Set the inbound destination / origination URI to your QCall SIP URI from Part B.
    • Enter it without the sip: prefix, e.g. 178.212.35.170:5060.
    • If Vobiz asks for a full URI format, use sip:178.212.35.170:5060.
  3. Make sure the DID from Step 2 is the number bound to this inbound route.
  4. Save.
Vobiz console: inbound destination / origination URI set to the QCall SIP URI
Now the loop is closed:
  • Outbound: QCall → abc123.sip.vobiz.ai (your Vobiz trunk) → PSTN.
  • Inbound: Caller → your DID → Vobiz → 178.212.35.170:5060 (QCall) → AI agent.

Testing

Outbound test
  1. In QCall, assign the new SIP dialer to a campaign or a Playground test call.
  2. Place a call to your own mobile. It should ring with your Vobiz DID as caller ID and the AI agent should speak when you answer.
Inbound test
  1. From any phone, call your Vobiz DID number.
  2. It should connect to your AI agent (assign an inbound assistant to this dialer/number in QCall first).

Troubleshooting


Sources