FruxonDocs
Agent NetworkTriggers

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).

GET
/v1/tenants/{tenant}/triggers/{trigger}/events
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

trigger*string

The trigger identifier.

Formatuuid
tenant*string

The tenant identifier

Query Parameters

limit?integer

Max rows to return (default 50, max 200).

Formatint32
before?integer

Cursor — createdAt Unix millis from the last row of the previous page.

Formatint64

Response 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
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}