Skip to main content

User enablement demo

Workflow preview

Workflow preview
100%
User enablement demo preview
Open on n8n.io

Important notice

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

1. Workflow Overview

This workflow was originally presented at the February 2022 n8n Meetup. [![Enabling End Users to Configure Workflows](https://res.cloudinary.com/marcomontalba...

Best for

  • Personal Productivity automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.set, n8n-nodes-base.webhook, n8n-nodes-base.baserow, n8n-nodes-base.cron, n8n-nodes-base.itemlists, n8n-nodes-base.emailsend

Source and attribution

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

Original n8n.io source

1.1 Workflow description

Title
User enablement demo
Workflow name
User enablement demo

This workflow was originally presented at the February 2022 n8n Meetup.

Requirements

In order to use this workflow, you will need the following in place:

  • A configured Baserow account
    • A group in Baserow called User Empowerment Demo
    • A database in the User Empowerment Demo called Office Shopping List
    • Inside the Office Shopping List database, you will need two tables:
      • Shopping List:
        • Column 1 - Single line text column named Item
      • Shopper:
        • Column 1 - Single line text column named Name
        • Column 2 - Email column named Email
  • An email account for sending out alerts

Customization

To make this workflow work for you, please customize the following items:

  • All Baserow nodes will need to be updated with your own credentials, database, tables and fields
  • The Send Shopping List node will need to be configured with your email credentials and email addresses
  • The Create Shopper Form Set node will need to have the code in the HTML value modified to reflect your Production URL from the Submit Shopper node (See instructions below)
  • The Cron node will need to be modified to reflect the timing that you wish to use

Modifying the Webform

The webform is the piece that people normally want to customize but is often the most complex because it is raw HTML. Here are some quick tips for making changes to the form.

Webform Nodes

There are two nodes that control what you see in the form:

  • Create Shopper Form - displays the form and submits it to the correct webhook
  • Create Response Page - displays the results when the form is submitted

Editing the Webform

The easiest way that I have found to edit the webform is to:

  1. Open up the Set node (Create Shopper Form or Create Response Page) that contains the HTML you wish to edit.
  2. Copy the contents of the HTML value to your favourite HTML editor
  3. Make your changes
  4. Paste the updated HTML back into the Set node

Changing the Webhook URL the Webform Posts To

In order for the webform to work properly, do the following:

  1. Determine the Production URL for the Submit Shopper webhook node
  2. In the Create Shopper Form node, look for the following line in the HTML value: form action="https://tephlon.app.n8n.cloud/webhook/submit-shopper" method="POST"
  3. Replace https://tephlon.app.n8n.cloud/webhook/submit-shopper with your Production URL

Changing the Webform Image

The image that is in the webform is actually embedded in the HTML in each of the Create Shopper Form or Create Response Page Set nodes and can be modified from there using these steps:

  1. Open up the appropriate Set node
  2. In the HTML value, find the line that starts with background-image:. It will be followed by a long string that looks like random characters
  3. Using a tool like Image to Base64 Converter, upload your image and generate a new CSS background source
  4. Replace the original background-image: line (including all the "random" characters) with the new generated CSS background source

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 - Create Response Page

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

Block 2 - Change Shopper Form Webhook

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

Block 3 - Submit Shopper

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

Block 4 - Set New Shopper Info

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

Block 5 - Get Present Shopper

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

Block 6 - Get Former Shopper

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

Block 7 - Update Shopper

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

Block 8 - Create Shopper Form

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

Block 9 - Cron

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

Block 10 - Get Shopping List

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

Block 11 - Format Shopping List

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

Block 12 - Send Shopping List

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

Block 13 - Baserow

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

3. Summary Table

Workflow User enablement demo
Complexity intermediate
Nodes 13
Categories Personal Productivity
Author jason
Published 03 Mar 2022

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/1500/1500.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 User enablement demo do?

This workflow was originally presented at the February 2022 n8n Meetup. [![Enabling End Users to Configure Workflows](https://res.cloudinary.com/marcomontalba...

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 Personal Productivity use case.