> ## 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.

# Verify project domain

> Recheck a Vercel project domain's DNS ownership challenge.

`verifyVercelProjectDomain` asks Vercel to recheck a domain after you add its required DNS record.

```ts automations/verify-vercel-domain.automation.ts theme={null}
import { automation } from "automate.ax"
import { verifyVercelProjectDomain } from "automate.ax/vercel"

export default automation("Verify Vercel domain", () => {
  const domain = verifyVercelProjectDomain({
    domain: "docs.example.com",
    project: "docs-site",
  })
  domain.verified
})
```

`project` and `domain` are required. Optional `teamId` overrides the OAuth installation team. Use the DNS challenges returned by `addVercelProjectDomain`, wait for propagation, then call this action. The output is the complete typed verified-domain response.
