Get ready to answer
- Open the dashboard and allow microphone access in your browser.
- Set your agent availability to available and turn on Available for calls in the sidebar user menu.
- Confirm that the inbound number is unassigned to AI, or that the AI agent has a Team transfer destination assigned.
- Place a test call and accept the incoming-call prompt. Check audio in both directions.
Make an outbound call
Use the dashboard dialer to select a verified caller number and enter the customer’s international phone number. To return a call from an existing phone session, use its call-back control; the new attempt is kept with that session. This starts a call immediately. It does not schedule a later callback. Starting a call from an existing session requires Sessions write access or Voice settings write access. Starting a new session requires Create sessions write access or Voice settings write access.Choose an outbound caller ID
In the dashboard dialer, open Make the call from to choose a verified caller ID. Search by name or phone number, including a partial number or a pasted number with spaces and punctuation. You can also scroll through the list and use the arrow keys and Enter to select a result. Press Escape to close the picker without changing the selected number.Hold and transfer
Use Hold to pause the customer leg and Resume to return. Use Transfer to select a destination. During a consultation transfer, the customer stays on hold while you speak privately with the destination. Choose Complete to hand over, or Cancel to return to the customer. If the destination does not answer, cancel the ring and resume the call. A consultation transfer and a conference serve different purposes: completing a transfer hands the customer over; adding a participant keeps people together on the call.Add participants
On a connected call, the host can choose Add participant and invite an available teammate or dial an external phone number. External dialing uses a verified caller number. Adding participants requires Sessions write access. Participants shows connected people and pending invites. The host can withdraw an invite or remove a participant. An invited teammate can leave without ending the call for everyone. Muting a participant for yourself only changes what you hear. The call timeline records participant changes. Recording and live transcripts, when enabled, continue across the call; see Recordings and transcripts.Wrap up and missed calls
Admins configure Wrap-up time in Settings → Phone Numbers. While wrapping up, you do not receive new call rings. Use I’m ready to finish early or add a minute if needed. Review missed calls in the inbox and decide whether to call back or use another channel. A missed human call is not automatically an AI outbound Call Finished workflow event. Validate the event source for the specific automation you configure.Linking callers to your own customer profile
Most phone calls arrive as a number. Two settings turn that number into the customer your agents already know. Contact profile link (Settings → Workspace) adds a button to the session panel, the in-call bar and the incoming-call popup that opens the customer in your own admin. The URL is a template over the contact:{{contact.phone_number}}, {{contact.email}} and {{contact.custom_data.<key>}} for any contact attribute. Values are URL-encoded; when a contact has no value for a placeholder the button is not shown. On the incoming-call popup the button follows the caller-number privacy setting, so a hidden number never leaks through the link.
Identity on incoming calls. When a call rings your agents, the caller’s contact is matched against the connected customer systems (ticketing system, then the CRM connections) and the contact’s name and email are filled in from the match. The lookup runs alongside the ring and never delays it.
If your customer data lives somewhere else, a workflow can do the lookup. The Phone call started trigger fires for every incoming call with the contact on trigger.call.ticket.contact, after the built-in matching has finished:
- Add an action that finds a customer by phone number in your system.
- Create a workflow on the
Phone call startedtrigger that calls that action with{{trigger.call.ticket.contact.phone_number}}. - Follow it with an Update contact step that sets the name and stores your customer id as a contact attribute, for example
admin_user_id. - Point the contact profile link at that attribute:
https://admin.example.com/users/{{contact.custom_data.admin_user_id}}.