FruxonDocs
Agent NetworkTriggers

Lists recent source events for a saved trigger.

Reads the persisted trigger's integration, config, event type, and filter, then returns the same response shape as the draft-mode preview. Powers per-row Dry-run and Fire-once, where the frontend hands the per-sample payload to the existing `:preview` and `:fire` endpoints.

GET
/v1/tenants/{tenant}/triggers/{trigger}/recentEvents
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 samples to return (default 20, max 50).

Formatint32

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/triggers/497f6eca-6276-4993-bfeb-53cbbbba6f08/recentEvents"
{
  "samples": [
    {
      "upstreamId": "string",
      "occurredAtMs": 0,
      "label": "string",
      "payload": {
        "source": "UNSPECIFIED",
        "eventType": "string",
        "body": {}
      },
      "wouldFire": false
    }
  ]
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}