The event object
Unique identifier for the event.
The type of event that occurred. See supported event types below.
The ID of the resource that the event relates to (e.g., a worker ID or payment ID).
The ID of the workspace where the event occurred.
A snapshot of the resource at the time of the event. The structure varies by event type.
Time at which the event was created, in ISO 8601 format.
Example event
Event types
| Type | Description |
|---|---|
worker.created | A new worker was added to the workspace |
worker.updated | A worker’s information was modified |
payment.created | A new payment was created |
payment.updated | A payment was modified |
Receiving events
There are two ways to receive events from Plane:Poll the API
Retrieve events on your own schedule by calling the list events endpoint. Useful for batch processing or backfilling data.
Webhooks
Receive events in real-time via HTTP POST to your server. Ideal for building responsive integrations.