Events
List Events
Retrieves a list of events for the tenant, supporting cursor navigation (details TBD) and filtering.
get/{tenant_id}/events
Query parameters
Filter events by destination ID(s).
status'success' | 'failed'
Filter events by delivery status.
nextstring
Cursor for next page of results
prevstring
Cursor for previous page of results
limitinteger
Number of items per page (default 100, max 1000)
startstring date-time
Start time filter (RFC3339 format)
endstring date-time
End time filter (RFC3339 format)
Response
A paginated list of events.
Example response
{
"count": 42,
"data": [
{
"id": "evt_123",
"destination_id": "des_456",
"topic": "user.created",
"time": "2024-01-01T00:00:00Z",
"successful_at": "2024-01-01T00:00:00Z",
"metadata": {
"source": "crm"
},
"status": "success",
"data": {
"user_id": "userid",
"status": "active"
}
}
]
}