> For the complete documentation index, see [llms.txt](https://apidocs.api19.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.api19.com/call-api-markup/api-call-markup-language/redirect.md).

# Redirect

The **\<Redirect>** verb transfers control of a call to the RCML at a different URL. All verbs after **\<Redirect>** are unreachable and ignored.

## Redirect Attributes

| Name       | Allowed Values | Default Value |
| ---------- | -------------- | ------------- |
| **method** | GET, POST      | POST          |

{% hint style="info" %}
&#x20;**Method.** The 'method' attribute takes the value 'GET' or 'POST'. This tells CallAPI whether to request the URL via HTTP GET or POST.
{% endhint %}

### Nesting

Example of how to use the \<Redirect> verb:

## Example

{% hint style="info" %}
For an example of how to use the  verb see below.
{% endhint %}

```markup
<Response>
    <Redirect>http://foobar.com/instructions</Redirect>
</Response>
```
