Vobiz Setup
This guide walks you through connecting your Vobiz account to Vocobase for outbound calling.Configure Vobiz with the V2 API (
PUT /api/v2/config/telephony/vobiz) for the default connection. To create multiple named Vobiz connections, use POST /api/v2/telephony/connections. Once Vobiz is configured, start calls programmatically using POST /calls/start with "provider": "vobiz".Prerequisites
- A Vobiz account with a verified Auth ID and Auth Token
- At least one Vobiz phone number provisioned for outbound voice
- An approved Vocobase account with
"vobiz"present inallowed_telephony_providers(checkGET /config)
Get your Vobiz credentials
1
Log in to the Vobiz dashboard
Go to vobiz.ai and sign in to your account.
2
Copy your Auth ID and Auth Token
From your account settings, copy your Auth ID and Auth Token.
- Auth ID — identifier in the form
MA_XXXXXXXX - Auth Token — alphanumeric string
3
Identify the phone number you will call from
From your Vobiz account, copy the number you plan to use as the caller ID.The number must be in E.164 format (e.g.,
+918011223344) and must be enabled for outbound voice.Configure Vobiz in Vocobase
Send the credentials through the V2 API.This endpoint updates your default Vobiz connection. To create multiple named Vobiz connections, use
POST /api/v2/telephony/connections and store the returned connection_id.Confirm it is configured
GET /api/v2/config reports Vobiz under allowed_telephony_providers and shows telephony.vobiz.configured: true once your credentials are saved. See Check provider access.
Make a test call
Start an outbound call with"provider": "vobiz".
"provider": "vobiz" when starting calls.
If your account has more than one active Vobiz connection, also pass connection_id — omitting it returns CONNECTION_AMBIGUOUS. See Bring Your Own Phone for the full request and response shape.
Optional: voicemail detection
For Vobiz outbound calls, supported accounts can enable carrier-side voicemail detection per agent. Setvoicemail_detection_enabled to control detection for that agent. When Vobiz reports voicemail, Vocobase marks the call as voicemail and ends the call.
The same agent field, voicemail_message, is accepted for API parity and for providers that can play a post-detection message. Vobiz currently uses the hangup behavior above.
Carrier-side voicemail detection must be enabled for your Vobiz connection by Vocobase before these agent settings affect live calls.
Troubleshooting
”Vobiz not configured” or 403 on /calls/start
- Confirm
"vobiz"is inallowed_telephony_providersfromGET /config. If it is not, contact your Vocobase account manager.
401 from Vobiz during verification
- Auth ID or Auth Token is wrong. Re-copy them from your Vobiz account settings.
- If you recently rotated the Auth Token in Vobiz, send
PUT /config/telephony/vobizagain with the new token.
Calls ring but drop immediately
- Confirm the destination number is reachable from your Vobiz account. Some Vobiz accounts have geographic restrictions that require explicit enablement.
- Check the Vobiz call logs for the exact reason the call was dropped (e.g., “Invalid from number”, “No route to destination”).
Caller ID shows the wrong number or “Unknown”
- The
from_numbersaved on your Vocobase Vobiz connection must match a number that Vobiz has provisioned for your account, in E.164 format. Update it viaPUT /config/telephony/vobizif it does not.
Next steps
Telephony Connections
Create and manage multiple named connections.
Plivo Setup
Configure Plivo as an additional telephony provider.
Quick Start
Create an agent and make your first call.