Skip to main content
Share
Guides

Beyond Chat: Escalating to Voice, Video and Co-Browsing

Some problems cannot be solved in a text box. How to escalate a chat to a live call or a shared screen without sending the customer to a different tool - and how to do it without exposing card details.

Content & Engineering
Aug 2, 2026
10 min read
Updated Aug 2026Expert Reviewed
chatbot escalationco-browsing supportvideo chat customer supportwebrtc live chatscreen share support
TL;DR

Some problems cannot be solved in a text box. How to escalate a chat to a live call or a shared screen without sending the customer to a different tool - and how to do it without exposing card details.

Key Takeaways
  • Escalate beyond text when the problem is visual, spatial, or when describing it costs more than showing it.
  • Three signals reliably justify it:The customer cannot describe what they are seeing.
  • "It says an error" after three exchanges means text has failed.The task has steps the customer must perform.
  • Configuration, form completion, settings changes - guided is faster than instructed.The value at stake justifies the agent minutes.

When should a chat escalate to voice, video or co-browsing?

Escalate beyond text when the problem is visual, spatial, or when describing it costs more than showing it. Three signals reliably justify it:

  • The customer cannot describe what they are seeing. "It says an error" after three exchanges means text has failed.
  • The task has steps the customer must perform. Configuration, form completion, settings changes - guided is faster than instructed.
  • The value at stake justifies the agent minutes. A high-value order or a churn-risk account earns a call; a delivery-status question does not.

What matters as much as when is where. If escalation means "here is a Zoom link", you have introduced a scheduling problem into a live conversation, and a meaningful share of customers will not follow.

The escalation ladder

Think of support modes as rungs, each with a higher cost and a higher resolution power:

ModeBest forAgent cost
BotKnown questions, lookups, bookingsNone
Live chatJudgement calls, exceptions, negotiationLow - agents handle several at once
Voice callEmotional situations, complex explanationHigh - fully serial
Video callPhysical products, identity checks, onboardingHigh
Co-browsingOn-screen tasks, forms, configurationHigh, but shortest to resolution

The mistake is jumping rungs. Offering a video call for a question the knowledge base answers wastes an agent; forcing a customer through six chat turns for something co-browsing would solve in ninety seconds wastes both.

Why in-browser escalation matters

The technical decision that determines whether escalation actually gets used is whether the customer has to leave the conversation.

Modern browsers support real-time voice and video natively through WebRTC, which means a call can start inside the same chat widget the customer is already using. No install, no meeting link, no dial-in, no account. The customer clicks accept and is talking to the agent.

The alternative - pasting a third-party meeting link - introduces four failure points: the customer must click out, possibly install something, possibly sign in, and find their way back if it fails. Each one loses people.

On Conferbot, voice and video calls run peer-to-peer over WebRTC with the signalling handled by the platform itself rather than a third-party calling vendor, and both are off by default per chatbot so you enable them deliberately rather than discovering them enabled. Call start, end, duration and outcome are written into the conversation record, so a call appears in the transcript instead of vanishing from the history.

Try it yourself
Build your first chatbot free
Free plan, no credit card required. Live on your site in about 10 minutes.
Start building free

Co-browsing without exposing card details

Co-browsing is the highest-resolution rung and the one most teams avoid, usually for a good reason: watching a customer's screen while they type a card number is a data-protection incident waiting to happen.

The fix is field masking, applied before anything is transmitted. Sensitive inputs are matched by selector and blanked on the way out, so the agent sees the page layout and the customer's progress but not the protected values. Typical masked selectors cover payment fields ([autocomplete*=cc-], [name*=card]), passwords, and anything else you designate.

Three controls make co-browsing safe to offer:

  1. Visitor approval. The session starts only when the customer explicitly accepts, every time.
  2. Field masking by policy. Defined centrally at workspace level with sensible presets - an e-commerce preset masks payment fields by default - and overridable per bot.
  3. Remote control as a separate permission. Viewing is one thing; letting an agent click on the customer's behalf is another, and it should be a distinct decision.

Set the masking policy before you enable the feature, not after the first incident.

Designing the escalation moment

The offer itself decides whether escalation converts:

  • Offer it, do not force it. A button the customer can ignore beats an automatic call invitation.
  • Say what it will do. "Share your screen so I can see the error" converts better than "Start co-browse session", which sounds like software.
  • Preserve the transcript. The agent should join already knowing what the bot covered - starting a call with "so, what's the problem?" wastes the entire automated conversation.
  • Give an exit. Ending the call should return to chat, not close the conversation.
  • Log the outcome. If calls do not appear in your analytics you cannot tell whether they resolve anything.

Also decide in advance who can escalate. Every agent offering video calls for routine questions will destroy your cost-per-contact.

Calculate your chatbot ROI
See exactly how much a chatbot saves your business. Free calculator, no signup required.
Try Calculator

Measuring whether it is worth it

Voice, video and co-browsing consume agent time serially, so they need to earn it. The metrics that answer the question:

  • Resolution rate by mode. If co-browsed sessions resolve at a materially higher rate than chat for the same issue category, the cost is justified.
  • Time to resolution, not handle time. A twelve-minute co-browse that ends the issue beats four chat sessions across two days.
  • Repeat contact rate. The clearest signal that a mode actually solved the problem.
  • Satisfaction by mode. Track CSAT split by escalation type; some audiences dislike video regardless of effectiveness.
  • Escalation rate per issue category. Categories that escalate constantly are telling you where the product or the documentation is broken.

That last one is the most valuable output. High escalation on one category is a roadmap item, not a staffing problem.

Next steps

Start narrow. Enable one escalation mode for one issue category where you already know text is failing, measure resolution and repeat contact for a month, and expand only where the numbers support it.

If you are running Conferbot, voice and video are per-chatbot settings that default to off, and co-browsing masking policy is configured at workspace level with per-bot overrides - so you can pilot on a single bot without changing anything else. Escalation sessions are recorded as first-class objects with their own lifecycle, so the analytics exist from day one.

Share this article:

Was this article helpful?

Ready to build your chatbot?

Join the businesses. Deploy on website, WhatsApp, and 11 more channels in minutes. Free forever plan available.

No credit cardNo coding13+ channels
Start Building Free

Get chatbot insights delivered weekly

Join 5,000+ professionals getting actionable AI chatbot strategies, industry benchmarks, and product updates.

🎯Automate this with a free chatbot

Build and deploy in 10 minutes. No coding needed.

FAQ

Beyond Chat FAQ

Everything you need to know about chatbots for beyond chat.

🔍
Popular:

Escalate when the problem is visual or spatial, when the customer cannot describe what they are seeing after a couple of exchanges, when the task involves steps the customer must perform, or when the account value justifies serial agent time. Routine lookups such as order status should stay in chat, where an agent can handle several conversations at once.

Co-browsing lets a support agent see the customer's view of a web page in real time so they can guide them through a task. Unlike full screen sharing it is scoped to the page rather than the whole desktop, and a well-implemented version masks sensitive fields such as payment and password inputs before the data leaves the customer's browser.

It is safe when three controls are in place: the visitor explicitly approves each session, sensitive fields are masked by selector before transmission so the agent never sees card numbers or passwords, and remote control is a separate permission from viewing. Configure the masking policy before enabling the feature rather than after an incident.

Not when the call runs over WebRTC inside the chat widget, which every modern browser supports natively. The customer clicks accept and the call starts in the page they are already on. Escalation that requires a third-party meeting link introduces install, sign-in and navigation steps, and a meaningful share of customers drop off at each one.

Compare resolution rate and repeat-contact rate by escalation mode for the same issue category, and track time to resolution rather than handle time - a longer single session that ends the issue beats several short chats across days. Also watch escalation rate per category, since categories that escalate constantly usually indicate a product or documentation gap rather than a staffing one.

About the Author

Content & Engineering

The Conferbot team writes about building, deploying, and improving AI chatbots.

View all articles
Skip the blank canvas
Start from one of 250+ free chatbot templates for lead generation, support, e-commerce, and 20+ industries - customize and launch in minutes.
Browse free templates

Related Articles

Omnichannel Platform

One Chatbot,
Every Channel

Your chatbot works seamlessly across WhatsApp, Messenger, Slack, and 6 more platforms. Build once, deploy everywhere.

View All Channels
Conferbot
online
Hi! How can I help you today?
I need pricing info
Conferbot
Active now
Welcome! What are you looking for?
Book a demo
Sure! Pick a time slot:
#support
Conferbot
New ticket from Sarah: "Can't access dashboard"
Auto-resolved. Password reset link sent.