Skip to main content
GET
/
workflow_executions
/
{execution_id}
/
events
List workflow execution events
curl --request GET \
  --url https://api.kapso.ai/platform/v1/workflow_executions/{execution_id}/events \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event_type": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "direction": "<string>",
      "edge_label": "<string>",
      "payload": {},
      "step": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "identifier": "<string>",
        "stepable_type": "<string>",
        "position": {
          "x": 123,
          "y": 123
        }
      }
    }
  ],
  "paging": {
    "cursors": {
      "before": "<string>",
      "after": "<string>"
    },
    "next": "<string>",
    "previous": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.kapso.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

execution_id
string<uuid>
required

Execution identifier

Query Parameters

event_type
string

Filter by event type

limit
integer
default:20

Maximum number of results per cursor-paginated page (default 20, max 100).

Required range: 1 <= x <= 100
before
string

Cursor for the previous page (Base64 encoded).

after
string

Cursor for the next page (Base64 encoded).

Response

Events retrieved successfully

List of workflow execution events with cursor pagination metadata

data
object[]
required
paging
object
required