Syntax

suprsend workflow list [flags]

Flags

FlagDescriptionDefault
-h, --helpShow help for the command
-l, --limit intNumber of workflows to list20
-f, --offset intStarting position for pagination0
-m, --mode stringWorkflow mode (live or draft)live
-o, --output stringOutput format (pretty, json, yaml)pretty

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'