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

# appz switch

> Learn how to switch between different team scopes using the `appz switch` CLI command.

export const GlobalOptionsComponent = ({command}) => <div>
    <h2><a href="#global-options">Global Options</a></h2>
    <p>These general options can be applied when using the <code>{command}</code> command:</p>
    <ul>
    <li><code>--cwd</code></li>
    <li><code>--debug</code></li>
    <li><code>--global-config</code></li>
    <li><code>--help</code></li>
    <li><code>--local-config</code></li>
    <li><code>--no-color</code></li>
    <li><code>--scope</code></li>
    <li><code>--token</code></li>
    </ul>

    <p>For detailed information on these global options and their applications, refer to the <a href="/cli/global-options">options section</a>.</p>
    </div>;

The appz switch command is used to switch to a different team scope when logged in with Appz CLI. You can choose to select a team from a list of all those you are part of or specify a team when entering the command.

## Usage

```bash terminal theme={null}
appz switch
```

> Using the `appz switch` command to change team scope with Appz CLI.

## Extended Usage

```bash terminal theme={null}
appz switch [team-name]
```

> Using the `appz switch` command to change to a specific team scope with Appz CLI.

<GlobalOptionsComponent command={'appz switch'} />
