v2

latestOpenAPI 3.0.4Apache 2.0raw.githubusercontent.com2026-07-1754198241.7 KB
Runs

List connector run events

Lists timestamped run events emitted by the connector runtime. Events should contain enough detail for support and audit without embedding sensitive payloads unless policy permits it.

get/runs/{runId}/events

Path parameters

runIdstring uuid required

Stable identifier for a connector route or operation run.

Example:9a785884-63ea-4b07-9976-264a1fc595f1

Stable identifier of a connector route or operation execution.

Query parameters

pageinteger

Zero-based page index.

sizeinteger

Page size.

Response

Paged connector run events.

Example response

{
  "data": [
    {
      "eventId": "524d8a98-c4a4-4982-b414-e29679b41eaf",
      "runId": "9a785884-63ea-4b07-9976-264a1fc595f1",
      "level": "WARN",
      "message": "Three rows failed validation and were written to dead letters.",
      "occurredAt": "2026-06-18T10:21:10Z"
    }
  ],
  "pagination": {
    "limit": 20,
    "offset": 0,
    "page": 0,
    "size": 20,
    "total": 1,
    "totalPages": 1,
    "hasMore": false
  }
}