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

# Workspace Settings

> Configure your organization, manage team access, secure your account, generate API keys, and connect third-party integrations.

The **Settings** menu is your central hub for administering your Agni workspace. To access it, click on your user profile in the bottom-left corner of the dashboard and select **Settings**.

<Frame>
  <img src="https://mintcdn.com/agni/wGEXRTXXwORCEgLm/images/settings-navigation.png?fit=max&auto=format&n=wGEXRTXXwORCEgLm&q=85&s=c81cca8fe9580bb41ba2e52e7fe3df44" alt="Navigate to Settings" width="269" height="323" data-path="images/settings-navigation.png" />
</Frame>

***

## Organization & Profile

Manage the core identity of your workspace and your personal account details.

<AccordionGroup>
  <Accordion title="Organization" icon="building">
    The **Organization** tab allows you to manage your top-level workspace settings.

    * View your active **Organization ID** and current plan (you'll need the org ID for some API calls).
    * Update your **Organization Name** and **Website**.
    * Restrict access by defining **Allowed Email Domains** (comma-separated). Only users with matching email domains can be invited to your workspace.
    * Set your default **Region** for data residency and latency optimization.

    <Frame>
      <img src="https://mintcdn.com/agni/wGEXRTXXwORCEgLm/images/settings-organization.png?fit=max&auto=format&n=wGEXRTXXwORCEgLm&q=85&s=d5a633998484c8b28984fb0842ea4e98" alt="Organization Settings" width="920" height="844" data-path="images/settings-organization.png" />
    </Frame>
  </Accordion>

  <Accordion title="Profile" icon="user">
    The **Profile** tab displays your current role (e.g., ADMIN) and registered email address. You can update your **First Name** and **Last Name** here.

    <Frame>
      <img src="https://mintcdn.com/agni/wGEXRTXXwORCEgLm/images/settings-profile.png?fit=max&auto=format&n=wGEXRTXXwORCEgLm&q=85&s=ba7c57ea637f1b166351897df0c25053" alt="Profile Settings" width="920" height="837" data-path="images/settings-profile.png" />
    </Frame>
  </Accordion>
</AccordionGroup>

***

## Security & Access

Secure your account and manage programmatic access to your voice infrastructure.

<AccordionGroup>
  <Accordion title="Security" icon="shield-check">
    Protect your account from unauthorized access:

    * **Change Password:** Update your current login credentials.
    * **Two-Factor Authentication (2FA):** Add an extra layer of security to your account. Highly recommended for production workspaces.
    * **Active Sessions:** Review all devices currently logged into your account. Use the **Revoke** button to instantly disconnect unrecognized or old sessions.

    <Frame>
      <img src="https://mintcdn.com/agni/wGEXRTXXwORCEgLm/images/settings-security.png?fit=max&auto=format&n=wGEXRTXXwORCEgLm&q=85&s=0a0e4c9e96c9ecd8e218beaaa5529055" alt="Security Settings" width="921" height="843" data-path="images/settings-security.png" />
    </Frame>
  </Accordion>

  <Accordion title="API Keys" icon="key">
    Generate and manage the secret keys required to interact with the Agni REST API.

    Click **+ New Key** to generate a token. The key is displayed once -- copy it immediately and store it securely.

    <Warning>
      Never expose API keys in client-side code, public repos, or browser-accessible files. If a key is compromised, delete it immediately and generate a new one.
    </Warning>

    <Frame>
      <img src="https://mintcdn.com/agni/wGEXRTXXwORCEgLm/images/settings-api-keys.png?fit=max&auto=format&n=wGEXRTXXwORCEgLm&q=85&s=e955e34f55103ba7c8c385c1645500c0" alt="API Keys" width="1277" height="923" data-path="images/settings-api-keys.png" />
    </Frame>

    Use your key in the `X-Api-Key` header:

    ```bash theme={null}
    curl https://api.ravan.ai/api/v1/agents/ \
      -H "X-Api-Key: YOUR_API_KEY"
    ```
  </Accordion>
</AccordionGroup>

***

## Team Management

Agni allows you to collaborate securely by inviting team members directly to your workspace.

<CardGroup cols={2}>
  <Card title="Manage Users" icon="users">
    The **Users** tab displays a complete directory of everyone with access to your organization, along with their assigned roles and permissions.
  </Card>

  <Card title="Invite Team Members" icon="user-plus">
    Navigate to the **Invite User** tab. Enter their **Email**, **First Name**, and **Last Name**, then click **Send Invitation**.
  </Card>
</CardGroup>

<Note>
  Invited users will receive an email containing a temporary password. They will be required to change this password upon their first successful login.
</Note>

## API Reference

Once you have generated your API Keys or connected your integrations, you can begin automating your workflow.

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Full REST API documentation with cURL, Python, and JavaScript examples.
  </Card>

  <Card title="GHL Integration API" icon="robot" href="/api-reference/ghl/setup-status">
    Manage your GoHighLevel connections and appointments programmatically.
  </Card>

  <Card title="Cal.com Integration API" icon="calendar" href="/api-reference/calcom/status">
    Manage your Cal.com connections and event types programmatically.
  </Card>
</CardGroup>
