> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Rerun zone activation check

> Requests another activation check for a pending zone.

`cloudflare.rerunZoneActivationCheck` requests another activation check for a pending zone.

```ts automations/cloudflare-rerun-zone-activation-check.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { cloudflare } from "automate.ax/cloudflare"

export default automation("Rerun zone activation check", () => {
  onDashboardRun({ title: "Rerun zone activation check" })
  cloudflare.rerunZoneActivationCheck({ zoneId: "zone-id" })
})
```

`zoneId` is required. Cloudflare limits how often activation checks can run. Optional second argument `{ account }` selects a static project account binding.

Returns the zone ID whose activation check was requested.
