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

# Invite Endpoint

> Specify `/invite` endpoint behavior.

```js theme={null}
new DBD.Dashboard({
    invite: {
        clientId: String,
        scopes: String[],
        permissions: String,
        redirectUri: String,
        otherParams: String
    },
});
```

## Example Usage

```javascript theme={null}
new DBD.Dashboard({
  invite: {
    clientId: "CLIENT_ID",
    scopes: ["bot", "applications.commands"],
    permissions: "8",
    redirectUri: "http://localhost:3000",
    otherParams: "test",
  },
});
```

## Props

<ParamField path="clientId" type="string" required>
  The client ID of the bot.
</ParamField>

<ParamField path="scopes" type="string[]" required>
  The scopes of the bot.
</ParamField>

<ParamField path="permissions" type="string" required>
  The [permissions int](https://discordapi.com/permissions.html) of the bot.
</ParamField>

<ParamField path="redirectUri" type="string" required>
  The redirect URI of the bot.
</ParamField>

<ParamField path="otherParams" type="string" required>
  The other params of the bot.
</ParamField>
