Pipedream

Connect Pipedream, a serverless workflow automation platform, with Webflow to automate CMS updates, process form submissions, and sync data across thousands of apps using event-driven workflows.

Install app
View website
View lesson
A record settings
CNAME record settings
Pipedream

How to integrate Pipedream with Webflow

The easiest way to set up your Pipedream Webflow integration is by installing the Pipedream app from the Webflow Apps marketplace. You can also configure Webflow webhooks directly in your site settings to send events to a Pipedream HTTP endpoint for event types not covered by the app's built-in triggers. For custom integrations, like real-time CMS sync with external databases, e-commerce order routing, or gated content workflows, you can build with the Webflow Data API and custom code inside Pipedream workflows.

Since Pipedream is itself an automation platform, it replaces tools like Zapier and Make rather than connecting through them.

Use the Pipedream app

Install the Pipedream app from the Webflow Apps marketplace. Authorize your Webflow account through OAuth, and start building workflows using pre-built triggers and actions.

The app includes four event triggers:

  • New Form Submission (instant) runs a workflow each time a visitor submits a Webflow form.
  • New Collection Item Created fires when a CMS item is added to a collection.
  • Collection Item Updated fires when an existing CMS item changes.
  • Collection Item Deleted fires when a CMS item is removed.

And five actions:

  • Create Collection Item adds a new item to any Webflow CMS collection.
  • List Collection Items retrieves items from a collection with pagination support.
  • Get Collection Item fetches a single item by ID.
  • Delete Collection Item removes a specific item from a collection.
  • Fulfill Order marks a Webflow e-commerce order as fulfilled.

Select a trigger, pick a Webflow site and collection from the dropdown menus, then chain actions from Pipedream's library of app connectors. Workflows execute on serverless infrastructure with nothing to deploy or maintain.

Configure Webflow webhooks

For event types not covered by the app's four built-in triggers, like site_publish or ecomm_inventory_changed, you can register webhook URLs directly in Webflow's site settings to send events to a Pipedream HTTP trigger endpoint.

Go to Site SettingsApps & IntegrationsWebhooks, add a webhook, and paste a Pipedream-generated HTTP endpoint URL. This requires no code beyond copying the URL.

You can also use Webflow's Code Embed element to add custom JavaScript that sends client-side data (like button clicks or scroll events) to a Pipedream HTTP endpoint via fetch requests.

Note: Webhooks created through the Webflow dashboard do not include signature headers for verification. If you need payload authentication, create webhooks programmatically via the Webflow Webhooks API instead.

Build with the Webflow Data API in Pipedream

For use cases that go beyond pre-built triggers and actions, like custom data transformations, multi-step API orchestration, or integration with proprietary systems, write custom Node.js or Python code inside Pipedream workflow steps with full access to npm and PyPI packages. This is a developer-level integration.

Automate CMS content sync

Keep Webflow CMS collections in sync with external data sources through scheduled polling or webhook-based events.

Relevant Webflow CMS API endpoints:

  • Create items: POST /v2/collections/{collection_id}/items
  • Update items: PATCH /v2/collections/{collection_id}/items (pass item IDs in the request body)
  • Publish items: POST /v2/collections/{collection_id}/items/publish — accepts an array of item IDs to push staged items live
  • List items: GET /v2/collections/{collection_id}/items — supports offset and limit parameters (max 100 per request)

For real-time sync, configure Webflow webhooks to fire on collection_item_created, collection_item_changed, or collection_item_deleted events and point them at a Pipedream HTTP trigger URL.

Webflow retries failed webhook deliveries up to 3 times at 10-minute intervals. After repeated failures, Webflow deactivates the webhook and sends an email notification. Build error handling into your Pipedream workflows to avoid deactivation.

Process form submissions with custom logic

Use the Webflow Forms API and form_submission webhook to build custom processing pipelines. Validate data, enrich it with third-party lookups, or route submissions to different systems based on form content.

  • List forms: GET /v2/sites/{site_id}/forms
  • Get form submission: GET /v2/sites/{site_id}/form_submissions/{form_submission_id}

The form_submission webhook payload includes form field data as key-value pairs, the form name, and a timestamp. A Pipedream workflow can parse this payload, run custom validation, then push the data to a CRM, create a support ticket, or add a row to Google Sheets.

Route e-commerce orders to external systems

Subscribe to the ecomm_new_order and ecomm_order_changed webhook events to receive real-time order notifications at your Pipedream endpoint. From there, a workflow can extract order details and route them to accounting software, fulfillment services, or notification systems.

  • Get order: GET /v2/sites/{site_id}/orders/{order_id} — returns customer info, line items, payment status, and totals
  • List orders: GET /v2/sites/{site_id}/orders — supports filtering by status and pagination
  • List products: GET /v2/sites/{site_id}/products

Webhook security and authentication

Webflow supports OAuth 2.0 (for apps acting on behalf of users) and site tokens (for site-scoped integrations). Pipedream's app handles OAuth automatically when you connect your account.

For webhook security, Webflow includes x-webflow-timestamp and x-webflow-signature headers on webhook requests created through the Webhooks API. Validate the HMAC signature in your Pipedream workflow to confirm payloads are authentic. Webhooks created through the Webflow dashboard UI do not include these headers. Create webhooks programmatically if you need signature validation.

What you can build

Integrate Pipedream with Webflow to add a serverless automation layer between your Webflow site and any external service, controlled through code or visual configuration.

  • Automated lead routing system: Capture Webflow form submissions and use Pipedream to validate the data, enrich it with a third-party service, then create a deal in your CRM — all in real time without manual data entry.
  • Self-updating resource directory: Sync CMS collection items from an Airtable base or Google Sheet on a schedule, so a partner directory or job board on your Webflow site stays current without manual CMS edits.
  • E-commerce order dashboard: Route new Webflow e-commerce orders to accounting software for invoicing and Slack for team notifications, giving operations a live feed of purchases without logging into multiple tools.
  • Content publishing pipeline: Connect a headless CMS like Contentful to Webflow through Pipedream, so publishing an article in Contentful automatically creates and publishes the corresponding CMS item on your Webflow site.

Frequently asked questions

  • Install the Pipedream app from the Webflow Apps marketplace and authorize your Webflow account through OAuth when prompted. A popup opens where you sign in to Webflow and grant Pipedream read/write access to your site data, CMS collections, forms, and e-commerce store.

  • Pipedream's app provides four native triggers: new form submission (instant), new collection item created, collection item updated, and collection item deleted. For events not covered by these triggers, like site_publish or ecomm_inventory_changed, configure Webflow webhooks to send events to a Pipedream HTTP trigger endpoint.

  • Yes. Webflow retries failed webhook deliveries up to 3 times at 10-minute intervals. After repeated failures, the webhook is deactivated, and you receive an email notification. Build error handling into your Pipedream workflows, such as logging incoming events or using a message queue, to handle failures gracefully and avoid webhook deactivation.

  • Yes. Pipedream supports custom Node.js and Python code within any workflow step, with full access to npm and PyPI packages. You can write custom data transformations, call the Webflow Data API directly, and chain multiple API calls across services. This makes Pipedream well-suited for complex integrations beyond what pre-built actions support.

Pipedream
Pipedream
Joined in

Description

Pipedream is a serverless workflow automation platform that connects Webflow to thousands of applications. It combines a visual workflow builder with full Node.js and Python support, so teams can automate form processing, CMS content sync, e-commerce order routing, and more without managing servers.

Install app

This integration page is provided for informational and convenience purposes only.


Other App integration and task automation integrations

Other App integration and task automation integrations

Taskade

Taskade

Connect Taskade, a collaborative project management platform, with Webflow to sync task and project data to CMS collections through webhook automation.

App integration and task automation
Learn more
MySQL

MySQL

Connect MySQL with Webflow to add dynamic database-driven content, real-time product catalogs, and complex user management.

App integration and task automation
Learn more
Wrike

Wrike

Connect Wrike with Webflow to automate client intake, track website requests, and create tasks directly from form submissions.

App integration and task automation
Learn more
OpenAI

OpenAI

Connect OpenAI with Webflow for visual workflows, chatbot widgets for quick deployment, or custom serverless functions.

App integration and task automation
Learn more
Microsoft SQL Server

Microsoft SQL Server

Connect Microsoft SQL Server, an enterprise database platform, with Webflow through middleware solutions like Zapier, Make, or custom API development. Direct database connections are not possible.

App integration and task automation
Learn more
WhaleSync

WhaleSync

Connect WhaleSync, a data sync platform, with Webflow to sync CMS content bidirectionally with Airtable, Notion, and Google Sheets in real-time.

App integration and task automation
Learn more
AWS Lambda

AWS Lambda

Connect AWS Lambda, a serverless compute service, with Webflow to add backend processing for forms, CMS automation, and custom API endpoints without managing servers.

App integration and task automation
Learn more
Freshdesk

Freshdesk

Embed Freshdesk's Help Widget directly on your Webflow site to add a floating widget to your pages where visitors can submit tickets, search help articles, and check ticket status.

App integration and task automation
Learn more
Shipmondo

Shipmondo

Connect Shipmondo, a multi-carrier shipping platform, with Webflow to automate label generation, tracking synchronization, and customs documentation through Zapier automation or custom API integration.

App integration and task automation
Learn more

Related integrations

No items found.

Get started for free

Try Webflow for as long as you like with our free Starter plan. Purchase a paid Site plan to publish, host, and unlock additional features.

Get started — it’s free