For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
cXMLREST API
cXMLREST API
  • Core
    • Compatibility API
    • cXML Specification
  • Guides
    • Compatibility API Webhooks
    • Receive SMS
    • Send SMS
    • Inbound Fax Callback
    • Add mustache template parameters to cXML responses
    • Gathering user input
  • Voice
    • Overview
    • Conference
    • Connect
    • Denoise
    • Dial
    • Echo
    • Enqueue
    • Gather
    • Hangup
    • Leave
    • Number
    • Pause
    • Pay
    • Play
    • Queue
    • Record
    • Redirect
    • Refer
    • Reject
    • Room
    • Say
    • Sip
    • Sms
    • Stream
    • Verto
    • VirtualAgent
  • Messaging
    • Overview
    • Message
    • Redirect
  • Fax
    • Overview
    • Receive
    • Reject
LogoLogoSignalWire Docs
Log inSign up
Support
On this page
  • Verb attributes
  • Nesting
  • Request parameters
  • Examples
  • A simple Verto dial
  • Dialing a Verto client with Dial attributes
Voice

Verto

|View as Markdown|Open in Claude|
Was this page helpful?
Edit this page
Previous

VirtualAgent

Next
Built with

The <Verto> noun is used to create a Verto connection. This is a SignalWire specific noun that is used to establish a connection between the inbound call to the Verto client.

When using the <Verto> noun to dial a Verto client, the client address is formatted as: <resource_name>@<space_sip_domain>.verto.signalwire.com.

Verb attributes

The <Verto> verb does not support any attributes.

Nesting

No other verbs can be nested within <Verto> however, <Verto> is nested within the <Dial> verb.

Request parameters

After a Dial attempt is made, SignalWire can make a request to the <Dial> verb’s action attribute. In addition to the Standard Request Parameters, the following are parameters passed back to your application when SignalWire makes the request.

ParametertypeDescription
DialCallSIDstringThe unique identifier for the call.
DialSipHangupDirectionstringThe direction of the hangup.
DialCallStatusstringThe status of the call.
DialCallDurationstringThe duration of the call.
HangupDirectionstringThe direction of the hangup.

Examples

A simple Verto dial

1<?xml version="1.0"?>
2<Response>
3 <Dial>
4 <Verto>Test@mySip-domain.verto.signalwire.com</Verto>
5 </Dial>
6</Response>

Dialing a Verto client with Dial attributes

1<?xml version="1.0" encoding="UTF-8"?>
2<Response>
3 <Dial
4 record="record-from-answer"
5 method="GET"
6 action="https://www.example.com/after_dial">
7 <Verto>Test@mySip-domain.verto.signalwire.com</Verto>
8 </Dial>
9</Response>