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

# Actieve sandboxes afsluiten

export const SandboxCliConfigHint = () => {
  if (typeof document === "undefined") {
    return null;
  } else {
    return <Note>Before running the command-line related example code in this document, please refer to the <Link href="/docs/nl/guides/sandbox-cli">tutorial</Link> to install the CLI and complete <Link href="/docs/nl/guides/sandbox-cli-auth">authentication</Link>.</Note>;
  }
};

Je kunt de CLI-opdracht gebruiken om actieve sandboxes af te sluiten.

<SandboxCliConfigHint />

## Sandboxes afsluiten op id

Voer de volgende opdracht uit om opgegeven sandboxes af te sluiten:

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox kill <sandbox-id1> [<sandbox-id2>...]
```

## Alle sandboxes afsluiten

Voer de volgende opdracht uit om alle actieve sandboxes af te sluiten:

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox kill --all
```
