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

> Delete one MillionVerifier bulk verification file.

`millionVerifier.deleteFile` deletes an uploaded bulk verification file.

```ts automations/millionverifier-delete-file.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { millionVerifier } from "automate.ax/millionverifier"

export default automation("Delete verification file", () => {
  onDashboardRun({ title: "Delete verification file" })
  millionVerifier.deleteFile({ fileId: "123" })
})
```

Provide the numeric `fileId` as a string or number. An optional second argument `{ account }` selects a named MillionVerifier binding. The action returns no value after MillionVerifier accepts the deletion.

Deletion changes provider state, so the action does not retry automatically after an indeterminate failure.
