Webflow

Web integration · 17 node(s).

00Overview

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting Webflow

Add your credentials as a Flomation environment secret, then pick them in each node. The connection fields are:

FieldTypeDetails
Webflow API TokensecretRequiredwfl_...
i
Pick an Environment on your flow (Flow Settings → Environment) so the secret resolves. Secret fields never show the value — they reference ${secrets.your_secret}.

02Create

Create Collection Item

webflow/create_collection_item · Action

Create a new item in a Webflow CMS collection

FieldTypeDetails
Collection IDsecretRequiredThe collection ID
Field DatatextRequired{"name": "My Item", "slug": "my-item", ...}
Is Draftboolean

Returns: tool_result, item_id, item, success, error

Create Webhook

webflow/create_webhook · Action

Create a webhook for a Webflow site to receive event notifications

FieldTypeDetails
Site IDsecretRequiredThe Webflow site ID
Webhook URLstringRequiredhttps://example.com/webhook
Trigger TypestringRequiredchoices: Form Submission, Site Publish, Page Created, Page Metadata Updated, Page Deleted, E-commerce New Order, E-commerce Order Changed, E-commerce Inventory Changed, Collection Item Created, Collection Item Changed, Collection Item Deleted, Collection Item Unpublished, User Account Added, User Account Updated, User Account Deleted

Returns: tool_result, webhook_id, success, error

03Delete

Delete Collection Item

webflow/delete_collection_item · Action

Delete an item from a Webflow CMS collection

FieldTypeDetails
Collection IDsecretRequiredThe collection ID
Item IDstringRequiredThe item ID

Returns: tool_result, success, error

04Get

Get Collection

webflow/get_collection · Action

Get a Webflow CMS collection with its field schema

FieldTypeDetails
Collection IDsecretRequiredThe collection ID

Returns: tool_result, collection, fields, success, error

Get Collection Item

webflow/get_collection_item · Action

Get a specific item from a Webflow CMS collection

FieldTypeDetails
Collection IDsecretRequiredThe collection ID
Item IDstringRequiredThe item ID

Returns: tool_result, item, success, error

Get Form Submissions

webflow/get_form_submissions · Action

Get submissions for a Webflow form with pagination

FieldTypeDetails
Form IDsecretRequiredThe form ID
LimitintegerNumber of submissions to return
OffsetintegerNumber of submissions to skip

Returns: tool_result, submissions, count, success, error

Get Page Content

webflow/get_page_content · Action

Get the DOM content nodes of a Webflow page

FieldTypeDetails
Page IDsecretRequiredThe page ID

Returns: tool_result, nodes, success, error

Get Site

webflow/get_site · Action

Get details of a specific Webflow site by ID

FieldTypeDetails
Site IDsecretRequiredThe Webflow site ID

Returns: tool_result, site, name, url, success, error

05List

List Collection Items

webflow/list_collection_items · Action

List items in a Webflow CMS collection with pagination

FieldTypeDetails
Collection IDsecretRequiredThe collection ID
LimitintegerNumber of items to return
OffsetintegerNumber of items to skip

Returns: tool_result, items, count, success, error

List Collections

webflow/list_collections · Action

List all CMS collections for a Webflow site

FieldTypeDetails
Site IDsecretRequiredThe Webflow site ID

Returns: tool_result, collections, count, success, error

List Forms

webflow/list_forms · Action

List all forms for a Webflow site

FieldTypeDetails
Site IDsecretRequiredThe Webflow site ID

Returns: tool_result, forms, count, success, error

List Pages

webflow/list_pages · Action

List all pages for a Webflow site

FieldTypeDetails
Site IDsecretRequiredThe Webflow site ID

Returns: tool_result, pages, count, success, error

List Sites

webflow/list_sites · Action

List all Webflow sites accessible with the provided API token

Returns: tool_result, sites, count, success, error

06Publish

Publish Site

webflow/publish_site · Action

Publish a Webflow site to its subdomain or specified custom domains

FieldTypeDetails
Site IDsecretRequiredThe Webflow site ID
Domain IDsstringComma-separated domain IDs (optional)

Returns: tool_result, success, error

07Update

Update Collection Item

webflow/update_collection_item · Action

Update an existing item in a Webflow CMS collection

FieldTypeDetails
Collection IDsecretRequiredThe collection ID
Item IDstringRequiredThe item ID
Field DatatextRequired{"name": "Updated Item", ...}
Is Draftboolean

Returns: tool_result, item, success, error

Update Page Content

webflow/update_page_content · Action

Update the DOM content nodes of a Webflow page

FieldTypeDetails
Page IDsecretRequiredThe page ID
NodestextRequired[{"nodeId": "...", "text": "..."}]
Locale IDstringRequiredThe locale identifier

Returns: tool_result, success, error

Update Page Metadata

webflow/update_page_metadata · Action

Update the title, slug, SEO, and Open Graph metadata of a Webflow page

FieldTypeDetails
Page IDsecretRequiredThe page ID
TitlestringPage title
SlugstringPage URL slug
SEO TitlestringSEO title tag
SEO DescriptionstringSEO meta description
Open Graph Titlestringog:title value
Open Graph Descriptionstringog:description value
Open Graph Imagestringog:image URL

Returns: tool_result, page, success, error

08Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.