Webflow is a powerful visual web design platform that enables you to build responsive websites without writing code. It combines a visual design interface with a robust CMS (Content Management System) that allows you to create, manage, and publish dynamic content for your websites.
With Webflow, you can:
- Design visually: Create custom websites with a visual editor that generates clean, semantic HTML/CSS code
- Manage content dynamically: Use the CMS to create collections of structured content like blog posts, products, team members, or any custom data
- Publish instantly: Deploy your sites to Webflow's hosting or export the code for custom hosting
- Create responsive designs: Build sites that work seamlessly across desktop, tablet, and mobile devices
- Customize collections: Define custom fields and data structures for your content types
- Automate content updates: Programmatically manage your CMS content through APIs
In Sim, the Webflow integration enables your agents to seamlessly interact with your Webflow CMS collections through API authentication. This allows for powerful automation scenarios such as automatically creating blog posts from AI-generated content, updating product information, managing team member profiles, and retrieving CMS items for dynamic content generation. Your agents can list existing items to browse your content, retrieve specific items by ID, create new entries to add fresh content, update existing items to keep information current, and delete outdated content. This integration bridges the gap between your AI workflows and your Webflow CMS, enabling automated content management, dynamic website updates, and streamlined content workflows that keep your sites fresh and up-to-date without manual intervention.
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.
List all items from a Webflow CMS collection
| 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 | Offset for pagination (e.g., 0, 100, 200) |
limit | number | No | Maximum number of items to return (e.g., 10, 50, 100; default: 100) |
| 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 |
Get a single item from a Webflow CMS collection
| 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 |
Create a new item in a Webflow CMS collection
| 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 |
Update an existing item in a Webflow CMS collection
| 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 |
Delete an item from a Webflow CMS collection
| 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 |
A Trigger is a block that starts a workflow when an event happens in this service.
Trigger workflow when an item is updated in a Webflow CMS collection (requires Webflow credentials)
| Parameter | Type | Required | Description |
|---|
triggerCredentials | string | Yes | This trigger requires webflow credentials to access your account. |
triggerSiteId | string | Yes | The Webflow site to monitor |
triggerCollectionId | string | No | Optionally filter to monitor only a specific collection |
| Parameter | Type | Description |
|---|
siteId | string | The site ID where the event occurred |
collectionId | string | The collection ID where the item was changed |
payload | object | payload output from the tool |
↳ id | string | The ID of the changed item |
↳ cmsLocaleId | string | CMS locale ID |
↳ lastPublished | string | Last published timestamp |
↳ lastUpdated | string | Last updated timestamp |
↳ createdOn | string | Timestamp when the item was created |
↳ isArchived | boolean | Whether the item is archived |
↳ isDraft | boolean | Whether the item is a draft |
↳ fieldData | object | The updated field data of the item |
Trigger workflow when a new item is created in a Webflow CMS collection (requires Webflow credentials)
| Parameter | Type | Required | Description |
|---|
triggerCredentials | string | Yes | This trigger requires webflow credentials to access your account. |
triggerSiteId | string | Yes | The Webflow site to monitor |
triggerCollectionId | string | No | Optionally filter to monitor only a specific collection |
| Parameter | Type | Description |
|---|
siteId | string | The site ID where the event occurred |
collectionId | string | The collection ID where the item was created |
payload | object | payload output from the tool |
↳ id | string | The ID of the created item |
↳ cmsLocaleId | string | CMS locale ID |
↳ lastPublished | string | Last published timestamp |
↳ lastUpdated | string | Last updated timestamp |
↳ createdOn | string | Timestamp when the item was created |
↳ isArchived | boolean | Whether the item is archived |
↳ isDraft | boolean | Whether the item is a draft |
↳ fieldData | object | The field data of the item |
Trigger workflow when an item is deleted from a Webflow CMS collection (requires Webflow credentials)
| Parameter | Type | Required | Description |
|---|
triggerCredentials | string | Yes | This trigger requires webflow credentials to access your account. |
triggerSiteId | string | Yes | The Webflow site to monitor |
triggerCollectionId | string | No | Optionally filter to monitor only a specific collection |
| Parameter | Type | Description |
|---|
siteId | string | The site ID where the event occurred |
collectionId | string | The collection ID where the item was deleted |
payload | object | payload output from the tool |
↳ id | string | The ID of the deleted item |
↳ deletedOn | string | Timestamp when the item was deleted |
Trigger workflow when a form is submitted on a Webflow site (requires Webflow credentials)
| Parameter | Type | Required | Description |
|---|
triggerCredentials | string | Yes | This trigger requires webflow credentials to access your account. |
triggerSiteId | string | Yes | The Webflow site to monitor |
formName | string | No | The name of the specific form to monitor (optional - leave empty for all forms) |
| Parameter | Type | Description |
|---|
siteId | string | The site ID where the form was submitted |
formId | string | The form ID |
name | string | The name of the form |
id | string | The unique ID of the form submission |
submittedAt | string | Timestamp when the form was submitted |
data | object | The form submission field data (keys are field names, values are submitted data) |
schema | array | Form schema describing each field |
↳ fieldName | string | Name of the form field |
↳ fieldType | string | Type of input (e.g., FormTextInput, FormEmail) |
↳ fieldElementId | string | Unique identifier for the form element (UUID) |
formElementId | string | The form element ID |