> ## 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 collection item

> Deletes one staged CMS item in a selected locale.

`webflow.deleteCollectionItem` deletes one staged CMS item in a selected locale.

## Example

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

export default automation("Delete collection item", () => {
  onDashboardRun({ title: "Delete collection item" })

  webflow.deleteCollectionItem({
    collectionId: "collection-id",
    itemId: "item-id",
  })
})
```

## Inputs

Every input accepts a compatible signal. It requires the `cms:write` OAuth scope.

| Field          | Type     | Required | Description                |
| -------------- | -------- | -------- | -------------------------- |
| `cmsLocaleId`  | `string` | No       | Optional CMS locale ID.    |
| `collectionId` | `string` | Yes      | Webflow CMS collection ID. |
| `itemId`       | `string` | Yes      | Webflow CMS item ID.       |

<Warning>
  This operation changes or permanently removes provider data. Confirm the IDs
  before you deploy it.
</Warning>

## Output

Completes without an output value after Webflow accepts the operation.
