API Reference

Read execution events

Reads events for an execution after checking the workflows:<name> entitlement associated with it. Available in every execution state, it returns ordered persisted events as JSON or opens an SSE feed when Accept requests text/event-stream; it does not mutate the execution.

GET/v1/executions/{id}/events

Reads events for an execution after checking the workflows: entitlement associated with it. Available in every execution state, it returns ordered persisted events as JSON or opens an SSE feed when Accept requests text/event-stream; it does not mutate the execution.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Execution ID.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/executions/string/events"
{  "events": [    {      "dispatchedAt": "string",      "eventId": "string",      "eventType": "string",      "eventVersion": "string",      "executionId": "string",      "occurredAt": "string",      "payloadJson": null,      "principalId": "string",      "routedAt": "string",      "streamPublishedAt": "string",      "traceparent": "string"    }  ]}