-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrigger-dev-list-runs-example.json
More file actions
44 lines (44 loc) · 1.2 KB
/
trigger-dev-list-runs-example.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"request": {
"method": "GET",
"url": "https://api.trigger.dev/api/v1/runs?filter[status][]=EXECUTING&filter[status][]=QUEUED&filter[tag][]=production&page[size]=25",
"headers": {
"Authorization": "Bearer tr_prod_your_secret_key"
}
},
"response": {
"status": 200,
"body": {
"data": [
{
"id": "run_abc123",
"status": "EXECUTING",
"taskIdentifier": "process-payment",
"version": "20260503.1",
"createdAt": "2026-05-03T10:00:00Z",
"updatedAt": "2026-05-03T10:00:05Z",
"startedAt": "2026-05-03T10:00:03Z",
"finishedAt": null,
"isTest": false,
"tags": ["production", "payment"]
},
{
"id": "run_def456",
"status": "QUEUED",
"taskIdentifier": "send-welcome-email",
"version": "20260503.1",
"createdAt": "2026-05-03T10:01:00Z",
"updatedAt": "2026-05-03T10:01:00Z",
"startedAt": null,
"finishedAt": null,
"isTest": false,
"tags": ["production", "email"]
}
],
"pagination": {
"next": "run_def456",
"previous": null
}
}
}
}