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

# Account Settings

> Manage your Dasha BlackBox account, invite team members, and configure roles and permissions.

Manage your workspace settings and team access. Invite developers, assign roles, and manage API keys — all from the Settings page.

**Prerequisites:** Admin role in your Dasha BlackBox organization.

## Access settings

Go to **Settings** in your dashboard sidebar to access account configuration.

***

## Roles and permissions

Dasha BlackBox has two roles:

| Role          | Permissions                                                          |
| ------------- | -------------------------------------------------------------------- |
| **Admin**     | Full access including user management and organization settings      |
| **Developer** | Create agents, schedule calls, manage API keys — cannot manage users |

The key difference: Developers cannot invite, remove, or manage other users. All other features are available to both roles.

***

## Invite team members

<Steps>
  <Step title="Open user settings">
    Go to **Settings** → **Users & Permissions**
  </Step>

  <Step title="Send invitation">
    Click **Invite User**, enter email, and select role (Admin or Developer)
  </Step>

  <Step title="User accepts">
    The invited user receives an email and signs in with Google SSO
  </Step>
</Steps>

<Note>
  Removing a user doesn't delete their work. Agents and calls they created remain in the organization.
</Note>

***

## Authentication

Dasha BlackBox uses **Google SSO** for authentication. All users sign in through their Google account via Dasha.AI's authentication service.

* No separate password to manage
* Secure OAuth 2.0 authentication
* Single sign-on across Dasha products

***

## API keys

Generate API keys to authenticate API requests:

<Steps>
  <Step title="Open API settings">
    Go to **Settings** → **API Keys**
  </Step>

  <Step title="Create key">
    Click **Create API Key** and give it a descriptive name
  </Step>

  <Step title="Copy and store">
    Copy the key immediately — it won't be shown again
  </Step>
</Steps>

<Warning>
  Store API keys securely. Never commit them to version control or share them publicly.
</Warning>

### Using API keys

Include the API key in the `Authorization` header:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
curl -X GET "https://blackbox.dasha.ai/api/v1/agents" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

***

## Troubleshooting

| Problem                 | Solution                                                       |
| ----------------------- | -------------------------------------------------------------- |
| Can't access settings   | Verify you have Admin role                                     |
| Can't invite users      | Only Admins can invite. Developers don't see the option        |
| Invitation not received | Check spam folder, verify email address, resend from dashboard |
| Can't sign in           | Ensure you're using the correct Google account                 |
