CLI Reference

whatalo logs

View and stream webhook delivery logs for your plugin — filter by event type, status, or store.

Syntax

whatalo logs [options]

Options

FlagShortTypeDefaultDescription
--follow-fbooleanWatch mode — poll for new logs every 3 seconds
--event <type>stringFilter by event type (e.g., ORDER_CREATED)
--status <s>stringFilter by delivery status: delivered or failed
--store <id>stringFilter by store ID
--limit <n>string20Number of results to return (maximum: 100)
--detail <id>stringShow full detail for a specific log entry
--jsonbooleanOutput as JSON
--portal-url <url>stringDeveloper Portal URL

Examples

Show the 20 most recent webhook deliveries:

whatalo logs

Stream logs in real time:

whatalo logs --follow

Show only failed deliveries:

whatalo logs --status failed

Filter by event type:

whatalo logs --event ORDER_CREATED --limit 50

View full detail for a specific log entry (supports 8-character ID prefix):

whatalo logs --detail a1b2c3d4

Output as JSON for scripting:

whatalo logs --json --limit 100

Follow Mode

When --follow is active, the CLI polls for new logs every 3 seconds and prints only entries that appeared since the last poll. Stop with Ctrl+C.

whatalo logs --follow --event CHECKOUT_COMPLETED

Detail View

The --detail flag shows the full record for a single log entry, including:

FieldDescription
EventEvent type (e.g., ORDER_CREATED)
Statusdelivered or failed
HTTP codeResponse status code from your server
StoreStore that triggered the event
TimeTimestamp of the delivery attempt
DurationTime taken for your server to respond
AttemptsNumber of delivery attempts
SourceOrigin of the event
Request URLThe URL the webhook was sent to
PayloadRequest body (truncated to 500 characters)
ResponseResponse body from your server
ErrorError message if delivery failed

On this page