Skip to main content

Sync Notion content to Webflow CMS as draft items with status tracking

Workflow preview

Workflow preview
100%
Sync Notion content to Webflow CMS as draft items with status tracking preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

How it works: This template takes approved Notion pages and syncs them to a Webflow CMS collection as draft items. It reads pages marked Status = Ready for publish in a specific Notion database/pro...

Best for

  • Content Creation automation workflows
  • Multimodal AI automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.notion, n8n-nodes-base.httprequest, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-base.wait, n8n-nodes-base.manualtrigger, n8n-nodes-base.switch

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Snehasish Konger.

Original n8n.io source

1.1 Workflow description

Title
Sync Notion content to Webflow CMS as draft items with status tracking
Workflow name
Sync Notion content to Webflow CMS as draft items with status tracking

How it works:

This template takes approved Notion pages and syncs them to a Webflow CMS collection as draft items. It reads pages marked Status = Ready for publish in a specific Notion database/project, merges JSON content stored across page blocks into a single object, then either creates a new CMS item or updates the existing one by name. On success it sets the Notion page to 5. Done; on failure it switches the page to On Hold for review.

Step-by-step:

  1. Manual Trigger You start the run with When clicking ‘Execute workflow’.

  2. Get Notion Pages (Notion → Database: Tech Content Tasks) Pull all pages with Status = Ready for publish scoped to the target Project.

  3. Loop Over Items (Split In Batches) Process one Notion page at a time.

  4. Code (Pass-through) Expose page fields (e.g., name, id, url, sector) for downstream nodes.

  5. Get Notion Block (children) Fetch all blocks under the page id.

  6. Merge Content (Code) Concatenate code-block fragments, parse them into one mergedContent JSON, and attach the page metadata.

  7. Get Webflow Items (HTTP GET) List items in the target Webflow collection to see if an item with the same name already exists.

  8. Update or Create (Switch)

    • No match: Create Webflow Item (POST) with isDraft: true, mapping all fieldData (e.g., category titles, meta title, excerpt, hero copy/image, benefits, problem pointers, FAQ, ROI).
    • Match: Update Webflow Item (Draft) (PATCH) for that id. Keep the existing slug, write latest fieldData, leave isDraft: true.
  9. Write Back Status (Notion)

    • Success path → set Status = 5. Done.
    • Error path → set Status = On Hold.
  10. Log Submission (Code) Log a compact object with status, notionPageId, webflowItemId, timestamp, and action.

  11. Wait → Loop Short pause, then continue with the next page.

Tools integration:

  • Notion — source database and page blocks for approved content.
  • Webflow CMS API — destination collection; items created/updated as drafts.
  • n8n Code — JSON merge and lightweight logging.
  • Split In Batches + Wait — controlled, item-wise processing.

Want hands-free publishing? Add a Cron trigger before step 2 to run on a schedule.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Get Notion Pages

Type / Role
n8n-nodes-base.notion - notion
Config choices
Version 2.2

Block 2 - Get Webflow Items

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 3 - Update Webflow Item (Draft)1

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 4 - Log Submission1

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 5 - Create Webflow Item

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 6 - Get Notion Block

Type / Role
n8n-nodes-base.notion - notion
Config choices
Version 2.2

Block 7 - Merge Content

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Loop Over Items

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 9 - Wait

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 10 - Code

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 11 - When clicking ‘Execute workflow’

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 12 - Update or Create

Type / Role
n8n-nodes-base.switch - switch
Config choices
Version 3.2

Block 13 - hold

Type / Role
n8n-nodes-base.notion - notion
Config choices
Version 2.2

Block 14 - Done

Type / Role
n8n-nodes-base.notion - notion
Config choices
Version 2.2

3. Summary Table

Workflow Sync Notion content to Webflow CMS as draft items with status tracking
Complexity intermediate
Nodes 14
Categories Content Creation, Multimodal AI
Author Snehasish Konger
Published 27 Aug 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/7935/7935.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Sync Notion content to Webflow CMS as draft items with status tracking do?

How it works: This template takes approved Notion pages and syncs them to a Webflow CMS collection as draft items. It reads pages marked Status = Ready for publish in a specific Notion database/pro...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, Multimodal AI use case.