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

# Disable a workflow with the SuprSend CLI

> Use the suprsend workflow disable command to mark a SuprSend workflow as inactive so it stops executing when triggered, without deleting its configuration.

Disable a workflow to stop it from processing triggers. Requires a workflow slug as a positional argument.

## Syntax

```bash theme={"system"}
suprsend workflow disable <workflow-slug> [flags]
```

**Arguments:**

* `<workflow-slug>` - Slug of the workflow to disable (required)

## Example

```bash theme={"system"}
# Disable workflow in default workspace
suprsend workflow disable my-workflow

# Disable workflow in another workspace
suprsend workflow disable user-signup --workspace production
```
