v50

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-102991198.1 KB
Events

Get Event

Retrieves details for a specific event.

When authenticated with a Tenant JWT, only events belonging to that tenant can be accessed. When authenticated with Admin API Key, events from any tenant can be accessed.

get/events/{event_id}

Query parameters

tenant_idstring

Filter by tenant ID. Returns 404 if the event does not belong to the specified tenant. Ignored when using Tenant JWT authentication.

Response

Event details.

idstring
tenant_idstring

The tenant this event belongs to.

matched_destination_idsstring[]

The destination IDs that this event was routed to based on topic and filter matching.

topicstring
timestring date-time

Time the event was received/processed.

metadataobject nullable

Key-value string pairs of metadata associated with the event.

dataobject

Freeform JSON data of the event.

Example response

{
  "id": "evt_123",
  "tenant_id": "tnt_123",
  "matched_destination_ids": [
    "des_456",
    "des_789"
  ],
  "topic": "user.created",
  "time": "2024-01-01T00:00:00Z",
  "metadata": {
    "source": "crm"
  },
  "data": {
    "user_id": "userid",
    "status": "active"
  }
}