> ## Documentation Index
> Fetch the complete documentation index at: https://developer.moneyone.in/llms.txt
> Use this file to discover all available pages before exploring further.

# User Redirection

> Redirect the user to complete consent and handle the return to your app.

After [initiating consent](./initiate-consent), redirect the user to the
`webRedirectionUrl` returned in the response. The user completes the consent
journey there, and is then sent back to the `redirectUrl` you supplied.

## Redirect the user

Open the `webRedirectionUrl` in the user's browser (or a web view). The URL
carries a time-bound `access_token` — use it as-is and do not modify it.

## Return to your app

Once the journey finishes, the user is redirected back to your `redirectUrl` with
the following query parameters appended:

| Param    | Description                                            |
| -------- | ------------------------------------------------------ |
| `txnid`  | Transaction identifier for the journey.                |
| `status` | `true` if the journey succeeded, `false` if it failed. |

### Example

```
https://yourapp.com/callback?txnid=abc123&status=true
```

<Note>
  The redirect `status` is a quick signal for your UI. Always confirm the terminal
  outcome via [Track Status](./track-status) before fetching data.
</Note>

## Next step

Track the journey to completion via [Track Status](./track-status) — webhook,
status polling, or in-iframe UI events.
