automate.getDeployment gets one deployment by deploymentId.
automations/get-deployment.automation.ts
deployment:read.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one Automate.ax deployment.
automate.getDeployment gets one deployment by deploymentId.
import { automation } from "automate.ax"
import { automate } from "automate.ax/automate"
export default automation("Inspect deployment", () => {
automate.getDeployment({ deploymentId: "dep_123" })
})
deployment:read.