webflow.deleteCollectionField permanently deletes a field from a CMS collection.
Example
automations/webflow-delete-collection-field.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.
Permanently deletes a field from a CMS collection.
webflow.deleteCollectionField permanently deletes a field from a CMS collection.
import { automation, onDashboardRun } from "automate.ax"
import { webflow } from "automate.ax/webflow"
export default automation("Delete collection field", () => {
onDashboardRun({ title: "Delete collection field" })
webflow.deleteCollectionField({
collectionId: "collection-id",
fieldId: "field-id",
})
})
cms:write OAuth scope.
| Field | Type | Required | Description |
|---|---|---|---|
collectionId | string | Yes | Webflow CMS collection ID. |
fieldId | string | Yes | Webflow field id. |