Skip to main content
List all events in a workspace with pagination. Returns event names and their linked schema information.

Syntax

suprsend event list [flags]

Flags

FlagDescriptionDefault
-h, --helpShow help for the command
-l, --limit intMaximum number of events to return20
-f, --offset intNumber of events to skip for pagination0
-o, --output stringOutput format (pretty, json, yaml)pretty
Use -o json for machine-readable JSON output, -o yaml for YAML. Default -o pretty outputs a human-friendly table.

Example

# List events in staging workspace (default)
suprsend event list

# List events in production workspace
suprsend event list --workspace production

# List events with limit and offset
suprsend event list --limit 10 --offset 5

# List events in JSON format
suprsend event list --output json