File tree Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Expand file tree Collapse file tree 2 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 12
12
By default, the records are sorted by the `startedAt` field in ascending
13
13
order. Therefore, you can use pagination to incrementally fetch all records while
14
14
new ones are still being created. To sort the records in descending order, use
15
- `desc=1` parameter. You can also filter runs by status ([available
15
+ `desc=1` parameter. You can also filter runs by `startedAt`` and ` status`` fields ([available
16
16
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)).
17
17
operationId : actorRuns_get
18
18
parameters :
58
58
schema :
59
59
type : string
60
60
example : SUCCEEDED
61
+ - name : startedAfter
62
+ in : query
63
+ description : |
64
+ Filter runs that started after the specified date and time (inclusive).
65
+ The value must be a valid ISO 8601 datetime string (UTC).
66
+ style : form
67
+ explode : true
68
+ schema :
69
+ type : string
70
+ format : date-time
71
+ example : " 2025-09-01T00:00:00.000Z"
72
+ - name : startedBefore
73
+ in : query
74
+ description : |
75
+ Filter runs that started before the specified date and time (inclusive).
76
+ The value must be a valid ISO 8601 datetime string (UTC).
77
+ style : form
78
+ explode : true
79
+ schema :
80
+ type : string
81
+ format : date-time
82
+ example : " 2025-09-17T23:59:59.000Z"
61
83
responses :
62
84
# todo 404?
63
85
' 200 ' :
Original file line number Diff line number Diff line change 66
66
schema :
67
67
type : string
68
68
example : SUCCEEDED
69
+ - name : startedAfter
70
+ in : query
71
+ description : |
72
+ Filter runs that started after the specified date and time (inclusive).
73
+ The value must be a valid ISO 8601 datetime string (UTC).
74
+ style : form
75
+ explode : true
76
+ schema :
77
+ type : string
78
+ format : date-time
79
+ example : " 2025-09-01T00:00:00.000Z"
80
+ - name : startedBefore
81
+ in : query
82
+ description : |
83
+ Filter runs that started before the specified date and time (inclusive).
84
+ The value must be a valid ISO 8601 datetime string (UTC).
85
+ style : form
86
+ explode : true
87
+ schema :
88
+ type : string
89
+ format : date-time
90
+ example : " 2025-09-17T23:59:59.000Z"
69
91
responses :
70
92
' 200 ' :
71
93
description : ' '
You can’t perform that action at this time.
0 commit comments