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
| Parameter | Type | Required | Description |
|---|---|---|---|
collectionId | string | Yes | ID of the collection |
offset | number | No | Offset for pagination (optional) |
limit | number | No | Maximum number of items to return (optional, default: 100) |
Output
| Parameter | Type | Description |
|---|---|---|
items | json | Array 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
| Parameter | Type | Required | Description |
|---|---|---|---|
collectionId | string | Yes | ID of the collection |
itemId | string | Yes | ID of the item to retrieve |
Output
| Parameter | Type | Description |
|---|---|---|
item | json | The 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
| Parameter | Type | Required | Description |
|---|---|---|---|
collectionId | string | Yes | ID of the collection |
fieldData | json | Yes | Field data for the new item as a JSON object. Keys should match collection field names. |
Output
| Parameter | Type | Description |
|---|---|---|
item | json | The 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
| Parameter | Type | Required | Description |
|---|---|---|---|
collectionId | string | Yes | ID of the collection |
itemId | string | Yes | ID of the item to update |
fieldData | json | Yes | Field data to update as a JSON object. Only include fields you want to change. |
Output
| Parameter | Type | Description |
|---|---|---|
item | json | The 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
| Parameter | Type | Required | Description |
|---|---|---|---|
collectionId | string | Yes | ID of the collection |
itemId | string | Yes | ID of the item to delete |
Output
| Parameter | Type | Description |
|---|---|---|
success | boolean | Whether 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