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

# Delete project

> Permanently delete a Vercel project.

`deleteVercelProject` permanently deletes one project by ID or name.

```ts automations/delete-vercel-project.automation.ts theme={null}
import { automation } from "automate.ax"
import { deleteVercelProject } from "automate.ax/vercel"

export default automation("Delete Vercel project", () => {
  deleteVercelProject({ project: "temporary-preview" })
})
```

`project` is required. Optional `teamId` overrides the OAuth installation team, and optional `account` selects the binding. The action completes without an output value. Vercel deletes the project, its deployments, and its project-level configuration; this cannot be undone through the API.
