> ## 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.

# Enable a workflow with the SuprSend CLI

> Use the suprsend workflow enable command to activate a SuprSend workflow so it runs when triggered by events, the workflow API, or scheduled broadcasts.

Enable a workflow to make it active and ready to receive triggers. Requires a workflow slug as a positional argument.

## Syntax

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

**Arguments:**

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

## Example

```bash theme={"system"}
# Enable workflow in staging workspace
suprsend workflow enable my-workflow

# Enable workflow in another workspace
suprsend workflow enable user-signup --workspace production
```
