Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion apify-api/openapi/paths/actor-runs/actor-runs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ get:
By default, the records are sorted by the `startedAt` field in ascending
order. Therefore, you can use pagination to incrementally fetch all records while
new ones are still being created. To sort the records in descending order, use
`desc=1` parameter. You can also filter runs by status ([available
`desc=1` parameter. You can also filter runs by `startedAt`` and `status`` fields ([available
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)).
operationId: actorRuns_get
parameters:
Expand Down Expand Up @@ -58,6 +58,28 @@ get:
schema:
type: string
example: SUCCEEDED
- name: startedAfter
in: query
description: |
Filter runs that started after the specified date and time (inclusive).
The value must be a valid ISO 8601 datetime string (UTC).
style: form
explode: true
schema:
type: string
format: date-time
example: "2025-09-01T00:00:00.000Z"
- name: startedBefore
in: query
description: |
Filter runs that started before the specified date and time (inclusive).
The value must be a valid ISO 8601 datetime string (UTC).
style: form
explode: true
schema:
type: string
format: date-time
example: "2025-09-17T23:59:59.000Z"
responses:
# todo 404?
'200':
Expand Down
22 changes: 22 additions & 0 deletions apify-api/openapi/paths/actors/acts@{actorId}@runs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,28 @@ get:
schema:
type: string
example: SUCCEEDED
- name: startedAfter
in: query
description: |
Filter runs that started after the specified date and time (inclusive).
The value must be a valid ISO 8601 datetime string (UTC).
style: form
explode: true
schema:
type: string
format: date-time
example: "2025-09-01T00:00:00.000Z"
- name: startedBefore
in: query
description: |
Filter runs that started before the specified date and time (inclusive).
The value must be a valid ISO 8601 datetime string (UTC).
style: form
explode: true
schema:
type: string
format: date-time
example: "2025-09-17T23:59:59.000Z"
responses:
'200':
description: ''
Expand Down
Loading