apify.getActorBuild gets the current state of one Apify Actor build.
Example
automations/apify-get-actor-build.automation.ts
Inputs
buildId is the Actor build 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 of one Apify Actor build.
apify.getActorBuild gets the current state of one Apify Actor build.
import { automation, onHttpRequest } from "automate.ax"
import { apify } from "automate.ax/apify"
export default automation("Get Actor build", () => {
onHttpRequest({ scope: "automation" })
apify.getActorBuild({ buildId: "build-id" })
})
buildId is the Actor build ID.