Skip to main content
Events are records of significant changes that occur within your Plane workspace. When a worker is created, a payment is updated, or other important actions happen, Plane generates an event that captures what changed. You can retrieve events through the API to build integrations, audit trails, or sync data with external systems. For real-time notifications, you can also receive events via webhooks.

The event object

string
Unique identifier for the event.
string
The type of event that occurred. See supported event types below.
string
The ID of the resource that the event relates to (e.g., a worker ID or payment ID).
string
The ID of the workspace where the event occurred.
object
A snapshot of the resource at the time of the event. The structure varies by event type.
string
Time at which the event was created, in ISO 8601 format.
Example event

Event types

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.