List all organization events
Stripe-style event feed: every event that happened in your organization,
newest first — including events no webhook was subscribed to (those simply
have an empty deliveries array) and manual webhook.test events.
Each event carries a deliverySummary and the per-endpoint deliveries
so you can see at a glance whether an event reached your servers.
Difference vs /webhook-deliveries: that endpoint lists deliveries
(one row per event per webhook). This endpoint lists events (one row per
event, with its deliveries nested). Use this one to answer “what happened?”,
use /webhook-deliveries to answer “what did we send to endpoint X?”.
Filters:
eventType— e.g.account.failed,account.payout_processed, orwebhook.testaccountId— events for one trading account
Example:
GET /platform/v1/organization/events?eventType=account.failed&limit=25
X-API-Key: hp_live_...
Permissions: requires view access to “Webhooks”.
Authentication: Accepts either Authorization: Bearer <jwt> (dashboard) or X-API-Key: hp_live_... (programmatic).
Authorizations
JWT Bearer token for user session auth. Format: "Bearer {token}". Used by User and Organization endpoints.
Query Parameters
Filter by event type (API names, e.g. account.failed, or webhook.test)
Filter to events of one trading account
1 <= x <= 100x >= 0Related topics
List all billing eventsList all webhooksInspect one event and all its webhook deliveriesInspect a webhook event and all delivery attemptsList all active lockouts