webflow.updateCollectionItems updates up to 100 staged CMS items across selected locales.
Example
automations/webflow-update-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.
Updates up to 100 staged CMS items across selected locales.
webflow.updateCollectionItems updates up to 100 staged CMS items across selected locales.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Update collection items", () => {
onDashboardRun({ title: "Update collection items" })
webflow.updateCollectionItems({
collectionId: "collection-id",
items: [{ id: "item-id", fieldData: { name: "Updated launch notes" } }],
})
})
cms:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
skipInvalidFiles | boolean | No | Webflow skipInvalidFiles value. |
items | object[] | No | Webflow items value. |
collectionId | string | Yes | Webflow CMS collection ID. |