-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrigger-dev-retrieve-run-events-example.json
More file actions
49 lines (49 loc) · 1.3 KB
/
trigger-dev-retrieve-run-events-example.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"request": {
"method": "GET",
"url": "https://api.trigger.dev/api/v1/runs/run_01HXYZABCDEF0123456789/events",
"headers": {
"Authorization": "Bearer tr_prod_xxxxxxxxxxxxxxxx"
}
},
"response": {
"status": 200,
"body": {
"events": [
{
"spanId": "span_aaaaaaaaaaaaaaaa",
"parentId": null,
"runId": "run_01HXYZABCDEF0123456789",
"message": "Run started",
"startTime": "2026-05-22T15:00:01.124Z",
"duration": 4231000000,
"isError": false,
"isPartial": false,
"isCancelled": false,
"level": "INFO",
"kind": "INTERNAL",
"attemptNumber": 1,
"taskSlug": "process-payment",
"events": [],
"style": {
"icon": "task",
"variant": "primary"
}
},
{
"spanId": "span_bbbbbbbbbbbbbbbb",
"parentId": "span_aaaaaaaaaaaaaaaa",
"runId": "run_01HXYZABCDEF0123456789",
"message": "Charging Stripe customer",
"startTime": "2026-05-22T15:00:01.350Z",
"duration": 812000000,
"isError": false,
"isPartial": false,
"isCancelled": false,
"level": "INFO",
"kind": "CLIENT"
}
]
}
}
}