Documentation Index
Fetch the complete documentation index at: https://docs.vocobase.com/llms.txt
Use this file to discover all available pages before exploring further.
Vobiz Setup
This guide walks you through connecting your Vobiz account to Vocobase for outbound calling.Configure Vobiz with the Partner API (
PUT /api/v2/config/telephony/vobiz). 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 partner account with
"vobiz"present inallowed_telephony_providers(checkGET /config)
Step 1: Get your Vobiz credentials
Log in to the Vobiz dashboard
Go to vobiz.ai and sign in to your account.
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
Step 2: Configure Vobiz in Vocobase
Send the credentials through the Partner API.Step 3: Confirm the partner sees Vobiz as configured
Fetch your partner configuration — the response should now include Vobiz inallowed_telephony_providers:
telephony.vobiz.configured: true confirms the credentials landed and a default from-number is set. Presence in allowed_telephony_providers is what gates your ability to start a Vobiz call — if Vobiz isn’t in that list, contact your Vocobase account manager to enable it.
Step 4: Make a test call
Start an outbound call with"provider": "vobiz":
"provider": "vobiz" when starting calls.
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.
Updating credentials
Rotate the Auth Token in Vobiz, then update Vocobase by re-sendingPUT /api/v2/config/telephony/vobiz with the new token.
Next steps
Plivo Setup
Configure Plivo as an additional telephony provider.
Quick Start
Create an agent and make your first call.