webflow.deleteCollectionItem deletes one staged CMS item in a selected locale.
Example
automations/webflow-delete-collection-item.automation.ts
Inputs
Every input accepts a compatible signal. It requires thecms:write OAuth scope.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Deletes one staged CMS item in a selected locale.
webflow.deleteCollectionItem deletes one staged CMS item in a selected locale.
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",
})
})
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. |