Hogsend
CLI Reference

hogsend journeys

List, inspect, enable, and disable journeys on a running Hogsend instance via the admin API.

Inspect and toggle journeys via the admin API (/v1/admin/journeys).

hogsend journeys <subcommand> [options]

The global --url, --admin-key, and --json flags apply — see the CLI Reference overview for connection details.

Subcommands

SubcommandWhat it does
listList journeys with status, trigger, and state counts.
get <id>Show one journey: trigger, exitOn, counts, and recent states.
enable <id>Enable a journey (PATCH { enabled: true }).
disable <id>Disable a journey (PATCH { enabled: false }).

Options

list accepts:

OptionDescription
--enabled <true|false>Filter by enabled state.
--limit <n>Page size (1–100, default 50).
--offset <n>Page offset (default 0).

--json emits machine-readable JSON only; -h, --help shows command help.

Examples

hogsend journeys list --enabled true
hogsend journeys get activation-welcome --json
hogsend journeys disable churn-prevention

On this page