Skip to main content
List workflows in a workspace with pagination. Returns workflow slug, name, status, and version info. Use --mode to switch between draft and live versions.

Syntax

suprsend workflow list [flags]

Flags

FlagDescriptionDefault
-h, --helpShow help for the command
-l, --limit intMaximum number of workflows to return20
-f, --offset intNumber of workflows to skip for pagination0
-m, --mode stringVersion mode: draft or livelive
-o, --output stringOutput format: pretty, json, or yamlpretty
Use -o json for machine-readable JSON output, -o yaml for YAML. Default -o pretty outputs a human-friendly table.

Example

# List live workflows in staging workspace
suprsend workflow list

# List with custom limit and workspace
suprsend workflow list --limit 50 --workspace production

# List draft workflows
suprsend workflow list --mode draft

# piping JSON output to jq
suprsend workflow list --output json | jq '.[].slug'