Skip to main content

<Verto>

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

<?xml version="1.0"?>
<Response>
<Dial>
<Verto>Test@mySip-domain.verto.signalwire.com</Verto>
</Dial>
</Response>

Dialing a Verto client with Dial attributes

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