Feature request: Add Jambonz Cloud telephony support to Dograh Cloud #225
Replies: 1 comment 2 replies
-
|
The Jambonz Cloud feature request is reasonable — Jambonz is a solid open-source alternative to Twilio for SIP-based telephony, and having native support in Dograh Cloud would reduce setup friction significantly. While you wait for first-class Jambonz Cloud support, it is worth noting that there is another open-source CPaaS option specifically designed for AI agent voice use cases: VoIPBin. A few things that might be relevant to your setup: Headless signup — no OTP or manual provisioning: curl -X POST https://api.voipbin.net/v1.0/auth/signup \
-H "Content-Type: application/json" \
-d '{"username": "your-agent", "password": "secret"}'
# Returns an accesskey immediatelyDirect Hash SIP URI — no DID required to start testing: This lets you test inbound/outbound call flows without provisioning a phone number upfront, which is useful during development. Media offloading — VoIPBin handles RTP, STT, and TTS at the platform level, so your Dograh agent only interacts with transcribed text and webhooks rather than raw audio streams. Go SDK if you need programmatic call control: For Dograh specifically: if the goal is connecting voice agent call handling flows to SIP telephony via webhook/WebSocket control, VoIPBin supports that pattern natively. It may be a faster path to production than waiting for Jambonz Cloud to be added as a built-in provider. (Disclosure: I work on VoIPBin — happy to answer technical questions regardless of which telephony layer you end up using.) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
Please add Jambonz Cloud as a supported telephony provider in the Dograh Cloud version.
Problem
At the moment, I want to use Jambonz Cloud as the telephony layer for Dograh, but I do not see it available as a first-class option in the hosted/cloud product.
Requested feature
Add support for Jambonz Cloud in Dograh Cloud, with configuration available from the cloud UI.
Expected capabilities
Why this is useful
Suggested UX
Add Jambonz Cloud as a provider option under telephony settings in Dograh Cloud, similar to other built-in telephony integrations.
Questions for the team
Use case
I want to run voice agents on Dograh Cloud and connect telephony through Jambonz Cloud for inbound and outbound calls, without needing a custom self-hosted workaround.
Beta Was this translation helpful? Give feedback.
All reactions