Webflow

Manage Webflow CMS collections

Configuration

List Items

Operation
List Items
Webflow Account*
Select Webflow account
Collection ID*
Enter collection ID
Offset
Pagination offset (optional)
Limit
Max items to return (optional)
List Items (webflow_list_items)

List all items from a Webflow CMS collection

Input
ParameterTypeRequiredDescription
collectionIdstringYesID of the collection
offsetnumberNoOffset for pagination (optional)
limitnumberNoMaximum number of items to return (optional, default: 100)
Output
ParameterTypeDescription
itemsjsonArray of collection items

Get Item

Operation
Get Item
Webflow Account*
Select Webflow account
Collection ID*
Enter collection ID
Item ID*
ID of the item
Get Item (webflow_get_item)

Get a single item from a Webflow CMS collection

Input
ParameterTypeRequiredDescription
collectionIdstringYesID of the collection
itemIdstringYesID of the item to retrieve
Output
ParameterTypeDescription
itemjsonThe retrieved item object

Create Item

Operation
Create Item
Webflow Account*
Select Webflow account
Collection ID*
Enter collection ID
Field Data*
json
Field data as JSON: `{ "name": "Item Name", "slug": "item-slug" }`
Create Item (webflow_create_item)

Create a new item in a Webflow CMS collection

Input
ParameterTypeRequiredDescription
collectionIdstringYesID of the collection
fieldDatajsonYesField data for the new item as a JSON object. Keys should match collection field names.
Output
ParameterTypeDescription
itemjsonThe created item object

Update Item

Operation
Update Item
Webflow Account*
Select Webflow account
Collection ID*
Enter collection ID
Item ID*
ID of the item
Field Data*
json
Field data as JSON: `{ "name": "Item Name", "slug": "item-slug" }`
Update Item (webflow_update_item)

Update an existing item in a Webflow CMS collection

Input
ParameterTypeRequiredDescription
collectionIdstringYesID of the collection
itemIdstringYesID of the item to update
fieldDatajsonYesField data to update as a JSON object. Only include fields you want to change.
Output
ParameterTypeDescription
itemjsonThe updated item object

Delete Item

Operation
Delete Item
Webflow Account*
Select Webflow account
Collection ID*
Enter collection ID
Item ID*
ID of the item
Delete Item (webflow_delete_item)

Delete an item from a Webflow CMS collection

Input
ParameterTypeRequiredDescription
collectionIdstringYesID of the collection
itemIdstringYesID of the item to delete
Output
ParameterTypeDescription
successbooleanWhether the deletion was successful

Usage Instructions

Integrates Webflow CMS into the workflow. Can create, get, list, update, or delete items in Webflow CMS collections. Manage your Webflow content programmatically. Can be used in trigger mode to trigger workflows when collection items change or forms are submitted.

Notes

  • Category: tools
  • Type: webflow