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

> Permanently delete a Resend contact segment.

`deleteSegment` removes a segment resolved by exact name or ID.

```ts automations/delete-resend-segment.automation.ts theme={null}
import { automation } from "automate.ax"
import { deleteSegment } from "automate.ax/resend"

export default automation("Delete Resend segment", () => {
  deleteSegment({ segment: "Old campaign" })
})
```

`segment` is required; optional `account` selects the binding. Name resolution
fails on missing or duplicate exact names. Returns
`{ deleted: boolean; id: string; object: string }`. Deleting a segment removes
the grouping, not the underlying contacts.
