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 sourcesList sources for one application:
hookie sources <app-public-id>Arguments
<app-public-id>— Optional. Application public id fromhookie apps. When omitted, every accessible source is listed (with an APP ID column).
Example
hookie sources billing-api-k7m2xpExample 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-idand--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' firstRun hookie login, then retry.
Finding Application IDs
hookie appsThen:
hookie sources billing-api-k7m2xpEmpty Results
For a specific application:
No sources found for application billing-api-k7m2xp.With no app filter:
No sources found.Related Commands
- Applications — List applications
- Listen — Stream events for an app or source