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

# Redirect URL

> The Discord OAuth redirect URL.

```js theme={null}
new DBD.Dashboard({
  redirectUri: String,
});
```

<Info>
  Please keep in mind that you will need to add the URL to your bots allowed
  redirect URLs in the [Discord Developer
  Portal](https://discord.com/developers/applications).
</Info>

## Example Usage

```javascript theme={null}
new DBD.Dashboard({
  redirectUri: "http://localhost/discord/callback",
});
```

## Props

<ParamField path="redirectUri" type="string" required default="http://localhost/discord/callback">
  The Discord OAuth redirect URL.
</ParamField>
