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

# Account Settings

> Manage your account name, logo, and account ID

export const Screenshot = ({lightSrc, darkSrc, alt, caption, maxWidth = "880px"}) => {
  return <div style={{
    margin: "1rem auto",
    maxWidth,
    width: "100%"
  }}>
      <Frame>
        <img className="block dark:hidden" src={lightSrc} alt={alt} />
        <img className="hidden dark:block" src={darkSrc} alt={alt} />
      </Frame>
      {caption ? <p style={{
    marginTop: "0.5rem",
    fontSize: "0.875rem",
    color: "inherit",
    opacity: 0.8
  }}>
          {caption}
        </p> : null}
    </div>;
};

## Account Information

Account Settings contains your account identity fields and logo.

**Access:** Go to **Settings → Account → Settings**.

<Screenshot lightSrc="/images/accounts__account-settings-light.png" darkSrc="/images/accounts__account-settings-dark.png" alt="Account settings page showing the account name, slug, logo upload area, and account ID" />

## What This Page Affects

This page affects the **current account**, not just you personally.

Use it when you want to change shared account identity details such as:

* the account name your team sees
* the logo shown across account-level UI surfaces
* the account ID you may need for support or integrations

If you only want to change your own name, avatar, or preferences, use [User Profile & Preferences](/accounts/user-profile) instead.

### Account Name

Update your account display name.

<Steps>
  <Step title="Open Account Settings">
    Navigate to **Settings → Account → Settings**.
  </Step>

  <Step title="Edit display name">
    Update the **Display Name** field.
  </Step>

  <Step title="Save by leaving the field">
    Name changes are saved when the field loses focus.
  </Step>
</Steps>

<Tip>
  Use descriptive names like `Acme Corp - Sales Team` instead of generic names.
</Tip>

### Account Logo

Upload a logo to personalize your account.

<Steps>
  <Step title="Open Account Settings">
    Navigate to **Settings → Account → Settings**.
  </Step>

  <Step title="Upload logo">
    Click **Upload Logo** and select a PNG, JPEG, or WebP image up to 5 MB (recommended square format).
  </Step>

  <Step title="Verify update">
    The logo updates after upload and appears across account UI surfaces.
  </Step>
</Steps>

### Account ID

Your account ID is shown in this page and includes a copy action.

Use account ID for:

* API requests that need the current account ID
* Support requests and account identification
* Internal operational references

<Note>
  The account ID is system-generated and read-only.
</Note>

### Delete Account

To delete an account and all associated data, contact [support@itellico.ai](mailto:support@itellico.ai). Account deletion is not self-service and requires confirmation through the support team.

<Warning>
  Account deletion is permanent and removes all agents, conversations, contacts, and related data.
</Warning>

## Next Steps

<CardGroup cols={2}>
  <Card title="Team Management" icon="users" href="/accounts/team-management">
    Invite members and manage roles
  </Card>

  <Card title="Subaccounts" icon="sitemap" href="/accounts/subaccounts">
    Create and manage subaccount structures
  </Card>

  <Card title="API Keys" icon="key" href="/accounts/api-keys">
    Manage API credentials for this account
  </Card>
</CardGroup>
