curl --request GET \
--url https://api.example.com/api/v1/runs/{id}/events \
--header 'Authorization: Bearer <token>'{
"data": [
{
"seq": 42,
"payload": {
"id": "<string>",
"ts": "2023-11-07T05:31:56Z",
"run_id": "<string>",
"event": "stage.started",
"node_id": "<string>",
"node_label": "<string>",
"session_id": "<string>",
"parent_session_id": "<string>",
"properties": {}
}
}
],
"meta": {
"has_more": true
}
}Returns a paginated JSON list of stored run events.
curl --request GET \
--url https://api.example.com/api/v1/runs/{id}/events \
--header 'Authorization: Bearer <token>'{
"data": [
{
"seq": 42,
"payload": {
"id": "<string>",
"ts": "2023-11-07T05:31:56Z",
"run_id": "<string>",
"event": "stage.started",
"node_id": "<string>",
"node_label": "<string>",
"session_id": "<string>",
"parent_session_id": "<string>",
"properties": {}
}
}
],
"meta": {
"has_more": true
}
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Unique run identifier (ULID).
First event sequence number to include.
x >= 1Maximum number of events to return.
1 <= x <= 1000