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

# Remove project custom field

> Remove a custom field from an Asana project.

`asana.removeProjectCustomField` remove a custom field from an Asana project.

```ts automations/asana-remove-project-custom-field.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { asana } from "automate.ax/asana"

export default automation("Remove project custom field", () => {
  onDashboardRun({ title: "Remove project custom field" })
  asana.removeProjectCustomField({
    projectId: "project-gid",
    customFieldId: "custom-field-gid",
  })
})
```

Provide `projectId` and `customFieldId`. Optional second argument `{ account }` selects a named Asana binding.

Returns no value. This removes the project setting, not the shared custom-field definition.
