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

> Permanently delete one Brevo contact by a supported identifier.

`deleteContact` removes the contact record rather than merely unsubscribing it
or removing a list membership.

## Example

```ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { deleteContact } from "automate.ax/brevo"

export default automation("Delete a former contact", () => {
  onHttpRequest({ scope: "automation" })

  deleteContact({
    identifier: "former@example.com",
    identifierType: "email_id",
  })
})
```

`identifier: string | number` is required. Optional `identifierType` is one of
the types on [Get contact](/reference/integrations/brevo/actions/get-contact#inputs);
`account` selects the Brevo binding. Returns `Signal<void>` after Brevo accepts
the permanent deletion. Campaign history may remain subject to Brevo retention
and compliance rules.
