Lists delivery attempts on the trigger, newest first.
Backs the Events tab on the trigger detail page. Each row records what the dispatcher did with one inbound that structurally matched the trigger — fired, dropped by the content filter, or fired fail-open because the filter threw. Without these rows, the filter-rejected case presents in the UI as identical silence to "the webhook never reached us"; with them, the operator can tell whether to fix the webhook or the filter rule. Cursor pagination via before (a `createdAt` timestamp from the last row of the previous page).
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The trigger identifier.
uuidThe tenant identifier
Query Parameters
Max rows to return (default 50, max 200).
int32Cursor — createdAt Unix millis from the last row of the previous page.
int64Response Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/triggers/497f6eca-6276-4993-bfeb-53cbbbba6f08/events"{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"triggerId": "00000000-0000-0000-0000-000000000000",
"outcome": "FIRED",
"source": "SCHEDULE",
"provider": "string",
"integrationConfigId": "00000000-0000-0000-0000-000000000000",
"eventType": "string",
"deliveryId": "string",
"filteredByConditionIndex": 0,
"filteredByConditionPath": "string",
"filteredByConditionActualValue": "string",
"errorMessage": "string",
"firedBindingCount": 0,
"skippedDoubleFireBindingCount": 0,
"firedAgentIds": [
"string"
],
"payloadSnippet": "string",
"createdAt": 0
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Deletes a trigger and all its bindings.
Permanently removes the trigger along with every agent binding attached to it. The bound agents themselves are not deleted. Returns 404 when the trigger does not exist.
Roll-up of delivery outcomes over a time window.
Powers the right-rail delivery-summary card — the one that replaces the bare "Last fired" line with a received / fired / filtered breakdown so operators can tell at a glance whether the filter is the reason their agent isn't running. Default window is 24 hours; the max is 30 days.