{% method %}
The Redirect verb is used to redirect the current XML execution to another URL.
Attribute | Description |
---|---|
requestUrl | (required) Absolute URL to send event and request new BXML. |
requestUrlTimeout | (required) Time (milliseconds) to wait for requestUrl response. |
Any verb after `` will not be executed.
Callbacks | Can reply with more BXML |
---|---|
Redirect | Yes |
{% common %}
This shows how to use Bandwidth XML to redirect the response to a new url.
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Redirect requestUrl="http://flow.url/nextBXML" requestUrlTimeout="10000"></Redirect>
</Response>
{% endmethod %}