RunCollectionClient
Hierarchy
- ResourceCollectionClient
- RunCollectionClient
Index
Properties
inheritedapifyClient
inheritedbaseUrl
inheritedhttpClient
optionalinheritedid
optionalinheritedparams
inheritedpublicBaseUrl
inheritedresourcePath
optionalinheritedsafeId
inheritedurl
Methods
list
Lists all Actor runs.
Awaiting the return value (as you would with a Promise) will result in a single API call. The amount of fetched items in a single API call is limited.
const paginatedList = await client.list(options);Asynchronous iteration is also supported. This will fetch additional pages if needed until all items are retrieved.
for await (const singleItem of client.list(options)) {...}Parameters
options: RunCollectionListOptions = {}
Pagination and filtering options.
Returns PaginatedIterator<ActorRunListItem>
A paginated iterator of Actor runs.
Client for managing the collection of Actor runs.
Provides methods to list Actor runs across all Actors or for a specific Actor. To access an individual run, use the
run()method on the main ApifyClient.https://docs.apify.com/platform/actors/running/runs-and-builds