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

# Integration management

> Manage integrations using the CLI

Manage integrations with CLI commands.

## List integrations

List all integrations:

```bash theme={null}
bp integrations list
```

Alias: `bp integrations ls`

## Get integration

Get integration details:

```bash theme={null}
bp integrations get --id <integration-id>
```

Or by name and version:

```bash theme={null}
bp integrations get --name acme/slack --version 1.0.0
```

## Delete integration

Delete an integration:

```bash theme={null}
bp integrations delete --id <integration-id>
```

Alias: `bp integrations rm`

## Options

### --id

Integration ID:

```bash theme={null}
bp integrations get --id xyz789
bp integrations delete --id xyz789
```

### --name

Integration name:

```bash theme={null}
bp integrations get --name acme/slack
```

### --version

Integration version:

```bash theme={null}
bp integrations get --name acme/slack --version 1.0.0
```
