> ## 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.

# Dial status reporting

> Use the action URL on the Vobiz Dial element to receive a call status callback after the call ends - control flow by returning fresh XML.

This examples uses an action URL in the Dial XML element. After the call ends, Vobiz reports back the status to this URL. You can control the flow of the call by returning valid Vobiz XML from the action URL and setting the redirect attribute to true.

In this example, Vobiz POSTs the status of the call to `https://<yourdomain>.com/dial_status/` and expects valid XML since the redirect attribute is set to true.

## Example

### Response

```xml theme={null}
<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Dial action="https://your-domain.com/dial_status/" method="POST" redirect="true">
        <Number>12025551111</Number>
    </Dial>
</Response>
```
