apify.getRun gets the current state and storage IDs for one Apify Actor run.
Example
automations/apify-get-run.automation.ts
Inputs
runId is the Actor run ID.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gets the current state and storage IDs for one Apify Actor run.
apify.getRun gets the current state and storage IDs for one Apify Actor run.
import { automation, onHttpRequest } from "automate.ax"
import { apify } from "automate.ax/apify"
export default automation("Get Actor run", () => {
onHttpRequest({ scope: "automation" })
apify.getRun({ runId: "run-id" })
})
runId is the Actor run ID.