Connectors vs SIP Connect
Connectors and SIP Connect are two different ways to bring the same providers into Zero Runtime. A connector streams audio over a WebSocket and leaves your number in the provider’s account. SIP Connect imports the number into Zero Runtime and carries audio over SIP.Key Concepts
Three things make up a connector. Knowing how they relate makes the rest of the flow easy to follow.Supported Providers
Pick a provider to jump to its setup guide. The connector flow is the same across providers; only the console steps and the audio markup differ. Support for more providers is added over time.Create a Connector
Connectors are created with the VideoSDK Server SDK, available for Node.js, Go, and Rust. The provider-specific guides below walk through the full setup; this is the call at the center of it.provider (required, one of twilio, plivo, or telnyx), name, roomId (fallback room), defaultRuleId, region.
How It Works
A call passes between three parties: your provider, Zero Runtime, and the room. The flow is the same for inbound and outbound calls, and each step below hands off to the next.- A call is placed. The provider handles the call (an inbound call to your number, or an outbound call you initiate) and sends a voice webhook to the connector’s webhook URL.
- Zero Runtime resolves routing. It decides which room the call joins, and optionally which agent, from the connector’s
defaultRoomIdordefaultRuleId, a matching phone-number routing rule, or aroomIdquery parameter. - Zero Runtime returns connect markup. The response (TwiML, Plivo XML, or TeXML) tells the provider to open a media WebSocket to the socket URL, carrying a single-use
refthat identifies the call. - The provider opens the WebSocket. Zero Runtime claims the call using the
ref, joins the room, and bridges audio in both directions. - Zero Runtime emits lifecycle events. As the call progresses, Zero Runtime posts signed webhooks (
call-started,call-answered,call-hangup) to your server.
Single-use claim window. The
ref is valid for 90 seconds after Zero Runtime returns the markup. The provider must open the WebSocket within that window, or the claim expires and the call fails. Providers normally connect within a second, so this only matters when a webhook is misconfigured.Lifecycle Webhooks
Connectors use the same webhook system as SIP Connect. Zero Runtime posts call events such ascall-started, call-answered, and call-hangup to your registered URLs, each signed with a videosdk-signature header so you can verify it.
For the full event list, payloads, signature verification, and registration, see SIP Webhooks.
Next Steps
Twilio Connector
Stream Twilio Media Streams audio into a room.
Plivo Connector
Stream Plivo Audio Streaming into a room.
Telnyx Connector
Stream TeXML media into a room.