CLI

Sources

List Hookie sources for one application or across all applications

The sources command lists sources. Pass an application public id to scope the list, or omit it to list sources across every application you can access.

Usage

List all sources:

hookie sources

List sources for one application:

hookie sources <app-public-id>

Arguments

  • <app-public-id> — Optional. Application public id from hookie apps. When omitted, every accessible source is listed (with an APP ID column).

Example

hookie sources billing-api-k7m2xp

Example Output (one app)

+----------+------------------+------------------------------------------+
| SLUG     | NAME             | DESCRIPTION                              |
+----------+------------------+------------------------------------------+
| stripe   | Stripe           | Payment-related webhook events           |
| checkout | Checkout         | Checkout webhook events                  |
| users    | Users            | User account events                      |
+----------+------------------+------------------------------------------+

Example Output (all apps)

+----------+----------------------+------------------+------------------------------------------+
| SLUG     | APP ID               | NAME             | DESCRIPTION                              |
+----------+----------------------+------------------+------------------------------------------+
| stripe   | billing-api-k7m2xp   | Stripe           | Payment-related webhook events           |
| checkout | checkout-api-m2n8xp  | Checkout         | Checkout webhook events                  |
+----------+----------------------+------------------+------------------------------------------+

Columns:

  • SLUG — Source slug (use with hookie listen --source-id and --app-id)
  • APP ID — Application public id (present only when listing across all applications)
  • NAME — Source name
  • DESCRIPTION — Description (truncated past 50 characters)

Authentication Required

You must be logged in. If not:

Error: not authenticated. Run 'hookie login' first

Run hookie login, then retry.

Finding Application IDs

hookie apps

Then:

hookie sources billing-api-k7m2xp

Empty Results

For a specific application:

No sources found for application billing-api-k7m2xp.

With no app filter:

No sources found.

On this page