webflow.deleteLiveCollectionItems deletes multiple published CMS items immediately.
Example
automations/webflow-delete-live-collection-items.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 multiple published CMS items immediately.
webflow.deleteLiveCollectionItems deletes multiple published CMS items immediately.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Delete live collection items", () => {
onDashboardRun({ title: "Delete live collection items" })
webflow.deleteLiveCollectionItems({
collectionId: "collection-id",
items: [{ id: "item-id" }],
})
})
cms:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
items | { id: string; cmsLocaleIds?: string[]; }[] | Yes | Webflow items value. |
collectionId | string | Yes | Webflow CMS collection ID. |