Feedspace Home Dashboard

How Do I Automate Slack Notifications with n8n?

Last updated on June 10, 2026

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.

Note: Automation through webhooks is available only on Professional and Business Plans in Feedspace.

Step 1: Create a Workflow in n8n

  1. Log in to your n8n instance (cloud or self-hosted) and click + New Workflow.
  2. Give your workflow a name, e.g., Feedspace to Slack Notifications.

Step 2: Add a Webhook Trigger Node

  1. Click Add first step and search for Webhook.
  2. Select the Webhook trigger node.
  3. Set HTTP Method to POST.
  4. Copy the Webhook URL shown in the node panel — you will need this in the next step.
  5. Click Listen for test event to put the node into test mode.

Step 3: Register the Webhook in Feedspace

  1. In your Feedspace workspace, go to Automation in the left sidebar.
  2. Click the Webhooks tab.
  3. Click Add Webhook and paste your n8n Webhook URL.
  4. Select the event New Testimonial.
  5. Click Save. Feedspace will now POST testimonial data to n8n each time a new testimonial arrives.

Step 4: Add a Slack Node

  1. Back in n8n, click + after the Webhook node to add an action.
  2. Search for Slack and select it.
  3. Choose Send a Message as the operation.
  4. Click Create new credential and connect your Slack account by entering an OAuth token or selecting your workspace.
  5. Select the Channel where notifications should be posted.
  6. Compose the Message Text using dynamic fields from the webhook body. For example:
    • New testimonial from {{ $json.reviewer_name }}: {{ $json.star_rating }} stars. {{ $json.testimonial_url }}

Step 5: Test and Activate the Workflow

Submit a test testimonial in Feedspace. The webhook fires and the Webhook node in n8n receives the data. Confirm the Slack message arrives in your channel. Once everything looks correct, click Activate to turn the workflow on. Every new Feedspace testimonial will now post a Slack notification automatically.

Why Set This Up?

  • Instant team alerts: Your team is notified the moment a new testimonial is submitted, with no manual checking of Feedspace required.
  • Centralized feedback channel: Keep all testimonial notifications in a dedicated Slack channel so nothing gets missed.
  • Faster response times: Sales, marketing, and support teams can act on customer feedback immediately from within Slack.
  • Zero ongoing effort: Once activated, the workflow runs 24/7 with no maintenance needed.
  • Better team alignment: Everyone stays in the loop on new customer reviews without leaving the tools they already use.

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. Note:...

What is Automation in Feedspace?

Overview Automation in Feedspace allows you to seamlessly connect your workspace with other tools and services. By leveraging the Feedspace API and automation features, you can: In short, automation helps reduce manual work, improve response time, and keep your team aligned with real-time updates. Step 1 – Access Automation Settings...

How Do I Automate Discord Notifications with n8n?

Overview Feedspace integrates with Discord through n8n using webhooks. When a new testimonial is submitted, Feedspace sends the data to your n8n workflow, which then posts a message to a Discord channel automatically. Note: Automation through webhooks is available only on Professional and Business Plans in Feedspace. Step 1: Create...