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

# API tokens commands - Omni CLI

> Reference for the omni api-tokens command group: manage organization API tokens.

List, inspect, enable or disable, and delete organization [API tokens](/api/authentication). Requires organization admin permissions.

```bash theme={null}
omni api-tokens <command>
```

| Command           | Description                    |
| ----------------- | ------------------------------ |
| `api-keys-list`   | List API tokens                |
| `api-keys-get`    | Get API token                  |
| `api-keys-update` | Enable or disable an API token |
| `api-keys-delete` | Revoke an API token            |

```bash wrap theme={null}
# List API tokens in the organization
omni api-tokens api-keys-list

# Disable a token
omni api-tokens api-keys-update <id> --body '{"enabled":false}'

# View help for api-keys-delete command, including arguments and flag details
omni api-tokens api-keys-delete --help
```

<Note>
  Every command in this group also accepts the [global flags](/developers/cli/reference/global-flags), including `--token`, `--profile`, `--format`, and `--compact`.
</Note>
