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

> Delete a Close SMS activity.

`close.deleteSms` permanently deletes an SMS activity.

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

export default automation("Delete Close SMS", () => {
  onDashboardRun({ title: "Delete Close SMS" })
  close.deleteSms({ smsId: "acti_abc123" })
})
```

Provide `smsId`; optional second argument `{ account }` selects a named Close binding. Returns `{ deleted: true, smsId }` after Close accepts the deletion.
