Operations related to event history and deliveries.
List Events
Retrieves a list of events for the tenant, supporting cursor navigation (details TBD) and filtering.
path Parameters
tenant_id
string · requiredThe ID of the tenant. Required when using AdminApiKey authentication.
query Parameters
destination_id
Filter events by destination ID(s).
status
string · enumFilter events by delivery status.
Enum values:successfailed
Responses
id
stringdestination_id
stringtopic
stringtime
string · date-timeTime the event was received/processed.
successful_at
string · date-timeTime the event was successfully delivered.
metadata
objectKey-value string pairs of metadata associated with the event.
data
objectFreeform JSON data of the event.
Get Event
Retrieves details for a specific event.
path Parameters
tenant_id
string · requiredThe ID of the tenant. Required when using AdminApiKey authentication.
event_id
string · requiredThe ID of the event.
Responses
id
stringdestination_id
stringtopic
stringtime
string · date-timeTime the event was received/processed.
successful_at
string · date-timeTime the event was successfully delivered.
metadata
objectKey-value string pairs of metadata associated with the event.
data
objectFreeform JSON data of the event.
List Event Delivery Attempts
Retrieves a list of delivery attempts for a specific event, including response details.
path Parameters
tenant_id
string · requiredThe ID of the tenant. Required when using AdminApiKey authentication.
event_id
string · requiredThe ID of the event.
Responses
delivered_at
string · date-timestatus
string · enumEnum values:successfailedresponse_status_code
integerresponse_body
stringresponse_headers
object
List Events by Destination
Retrieves events associated with a specific destination for the tenant.
path Parameters
tenant_id
string · requiredThe ID of the tenant. Required when using AdminApiKey authentication.
destination_id
string · requiredThe ID of the destination.
query Parameters
status
string · enumFilter events by delivery status.
Enum values:successfailed
Responses
id
stringdestination_id
stringtopic
stringtime
string · date-timeTime the event was received/processed.
successful_at
string · date-timeTime the event was successfully delivered.
metadata
objectKey-value string pairs of metadata associated with the event.
data
objectFreeform JSON data of the event.
Get Event by Destination
Retrieves a specific event associated with a specific destination for the tenant.
path Parameters
tenant_id
string · requiredThe ID of the tenant. Required when using AdminApiKey authentication.
destination_id
string · requiredThe ID of the destination.
event_id
string · requiredThe ID of the event.
Responses
id
stringdestination_id
stringtopic
stringtime
string · date-timeTime the event was received/processed.
successful_at
string · date-timeTime the event was successfully delivered.
metadata
objectKey-value string pairs of metadata associated with the event.
data
objectFreeform JSON data of the event.