Webflow
Manage Webflow CMS collections
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.
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | ID of the Webflow site (e.g., "580e63e98c9a982ac9b8b741") |
collectionId | string | Yes | ID of the collection (e.g., "580e63fc8c9a982ac9b8b745") |
offset | number | No | No description |
limit | number | No | No description |
| Parameter | Type | Description |
|---|
items | array | Array of collection items |
↳ id | string | Unique item ID |
↳ cmsLocaleId | string | CMS locale ID |
↳ lastPublished | string | Last published date (ISO 8601) |
↳ lastUpdated | string | Last updated date (ISO 8601) |
↳ createdOn | string | Creation date (ISO 8601) |
↳ isArchived | boolean | Whether the item is archived |
↳ isDraft | boolean | Whether the item is a draft |
↳ fieldData | object | Collection-specific field data (varies by collection schema) |
metadata | object | Metadata about the query |
↳ itemCount | number | Number of items returned |
↳ offset | number | Pagination offset |
↳ limit | number | Maximum items per page |
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | ID of the Webflow site (e.g., "580e63e98c9a982ac9b8b741") |
collectionId | string | Yes | ID of the collection (e.g., "580e63fc8c9a982ac9b8b745") |
itemId | string | Yes | ID of the item to retrieve (e.g., "580e64008c9a982ac9b8b754") |
| Parameter | Type | Description |
|---|
item | json | The retrieved item object |
metadata | json | Metadata about the retrieved item |
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | ID of the Webflow site (e.g., "580e63e98c9a982ac9b8b741") |
collectionId | string | Yes | ID of the collection (e.g., "580e63fc8c9a982ac9b8b745") |
fieldData | json | Yes | Field data for the new item as a JSON object. Keys should match collection field names. |
| Parameter | Type | Description |
|---|
item | json | The created item object |
metadata | json | Metadata about the created item |
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | ID of the Webflow site (e.g., "580e63e98c9a982ac9b8b741") |
collectionId | string | Yes | ID of the collection (e.g., "580e63fc8c9a982ac9b8b745") |
itemId | string | Yes | ID of the item to update (e.g., "580e64008c9a982ac9b8b754") |
fieldData | json | Yes | Field data to update as a JSON object. Only include fields you want to change. |
| Parameter | Type | Description |
|---|
item | json | The updated item object |
metadata | json | Metadata about the updated item |
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | ID of the Webflow site (e.g., "580e63e98c9a982ac9b8b741") |
collectionId | string | Yes | ID of the collection (e.g., "580e63fc8c9a982ac9b8b745") |
itemId | string | Yes | ID of the item to delete (e.g., "580e64008c9a982ac9b8b754") |
| Parameter | Type | Description |
|---|
success | boolean | Whether the deletion was successful |
metadata | json | Metadata about the deletion |