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.
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"
}
}