UnblockPayGuideReference

Events structure

We have released webhooks for Payouts and plan to expand support to additional event categories soon.

For every event, we will have the following structure:

  • event: The transaction type (currently only payout)

  • event_id: The unique identifier of the event

  • event_type: One of the event types listed in Webhooks

  • event_resource_id: The unique identifier of the transaction

  • event_resource_status: One of the transaction states listed in Transactions

  • event_resource: The complete transaction object

  • event_created_at: The timestamp when the event occurred


Event exampleCopied!

Below is an example of an event for a created Payout:

"event": "payout",
  "event_id": "4d7196d0-ed6e-11ef-8fc7-7b1bb8f06792",
  "event_type": "payout.created",
  "event_resource_id": "23449700-0375-11f0-a25c-7da3b4c9befc",
  "event_resource_status": "awaiting_deposit",
  "event_resource": {}
  "event_created_at": "2025-03-17T21:16:49.711Z"