Feedspace Home Dashboard

How Do I Submit Feedspace Testimonials from Notion via n8n?

Last updated on July 22, 2026

Overview

Feedspace integrates with Notion through n8n, allowing you to automatically submit testimonials to Feedspace whenever a new item is added to a Notion database. This is useful if your team collects customer feedback directly in Notion and wants to centralise it in Feedspace.

Automation is available on Professional and Business plans.

Steps to submit testimonials from Notion

Step 1: Create a workflow in n8n

  1. Log in to your n8n instance (cloud or self-hosted). On the home screen, click Build a workflow.
  2. Click the workflow name My workflow at the top to rename it, e.g., Notion to Feedspace Testimonials.

Step 2: Add a Notion trigger node

  1. Click Add first step, search for Notion Trigger, and select it.
  2. Click Create new credential and connect your Notion account via OAuth.
  3. Select Page Added to Database as the event.
  4. Choose the Notion database that holds your customer feedback entries.
  5. Click Listen for test event and add a test item to your Notion database to capture a sample payload.

Step 3: Add an HTTP Request node to submit to Feedspace

  1. Click + to add an action node, search for HTTP Request, and select it.
  2. Set Method to POST and enter the Feedspace Submit Testimonial API endpoint URL.
  3. Under Authentication, add a Header Auth with the key Authorization and the value set to your Feedspace Automation Secret Key.
    • To find this key: log in to your Feedspace dashboard, click Automation in the left sidebar, then click the Automation tab and copy the Automation Secret Key.
  4. Set Body Content Type to JSON and map the fields from your Notion trigger:
    • name: Notion “Name” property
    • email: Notion “Email” property
    • job_role: Notion “Role” or “Title” property
    • company_name: Notion “Company” property
    • star_rating: Notion “Rating” property
    • testimonial_text: Notion “Testimonial” or “Feedback” property

Step 4: Test and activate the workflow

Add a test item to your Notion database and run the workflow. Confirm the testimonial appears in your Feedspace workspace. Once confirmed, click Publish in the top right. New Notion database items will now automatically submit testimonials to Feedspace.

What’s next

  • Review the submitted testimonials in your Feedspace workspace to confirm the field mapping is correct.
  • You can update the field mapping in the HTTP Request node at any time to match changes in your Notion database structure.

Common questions

Where do I find my Feedspace Automation Secret Key?

Log in to your Feedspace dashboard, click Automation in the left sidebar, then click the Automation tab. Your Automation Secret Key is shown there.

Does the Notion Trigger node poll for new entries or respond in real time?

The Notion Trigger node in n8n polls your database at a set interval. It is not a real-time push trigger. Check your n8n plan for the minimum polling interval available.

What happens if a required Feedspace field is missing from the Notion entry?

The API call will return a validation error for that field. Make sure your Notion database has columns for all required Feedspace fields, such as name and testimonial_text.

You might also find helpful

What is n8n Integration in Feedspace?

Overview Feedspace integrates with n8n, an open-source workflow automation tool available as a self-hosted solution or a cloud service. Using Feedspace webhooks and n8n’s workflow nodes, you can automatically send notifications, back up testimonials, and connect Feedspace to hundreds of other services whenever a new testimonial is submitted. Automation through...

What is Automation in Feedspace?

Overview Automation in Feedspace lets you connect your workspace with other tools and services. Using the Feedspace Automation Secret Key, API, and webhooks, you can send real-time notifications to apps like Slack, Telegram, WhatsApp, and Discord, back up testimonials to Google Drive or Dropbox, and push event data to any...

How Do I Automate Slack Notifications with n8n?

Overview Feedspace integrates with Slack through n8n using webhooks. When a new testimonial is submitted in Feedspace, a webhook fires to your n8n workflow, which then posts a message to a Slack channel automatically. Automation through webhooks is available on Professional and Business plans in Feedspace. Step 1: Create a...