v41

latestOpenAPI 3.0.0UNLICENSEDraw.githubusercontent.com2026-07-0839165177.6 KB
Events

Retrieve event

Retrieves an event by ID.

get/api/v1/events/{id}

Path parameters

idstring required

Response

The event

idstring required

Unique identifier for the event. This can be used as an idempotency key to avoid double-processing of the same underlying event.

object'event' required
createdAtstring required

Timestamp of when the event was created.

dataEventData

The event data payload. The concrete shape depends on source.type.

Refer to webhook event types for the payload shape associated with each source.type.

Example response

{
  "id": "evt_1234567890",
  "createdAt": "2026-03-25T00:00:00Z",
  "source": {
    "id": "ci_1234567890"
  }
}