Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
In this example, we have a Redirect element after a Speak element. When the Speak element finishes, the Redirect element executes, and Vobiz processes the call based on the XML returned from the Redirect element.
Example Request
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Speak>Please wait while you call is being transferred.</Speak>
<Redirect>https://your-domain.com/redirect/</Redirect>
</Response>
Response
To connect the incoming call to a different number, you should return the section example’s XML from the Redirect URL.
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial>
<Number>12025551111</Number>
</Dial>
</Response>