Feedspace Home Dashboard

How Do I Automate Discord Notifications with n8n?

Last updated on July 22, 2026

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.

Automation through webhooks is available 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). On the home screen, click Build a workflow.
  2. Click the workflow name My workflow at the top to rename it, e.g., Feedspace to Discord Notifications.

Step 2: Add a webhook trigger node

  1. Click Add first step…
  2. A panel opens showing “What triggers this workflow?”. Select On webhook call.
  3. In the Webhook node panel, change HTTP Method from GET to POST.
  4. Click the Production URL tab and copy the webhook URL — you will need this in the next step.

Step 3: Register the webhook in Feedspace

  1. Log in to your Feedspace dashboard and click Automation in the left sidebar.
  2. Click the Webhook tab.
  3. Click Create Webhook and paste your n8n Webhook URL into the Endpoint URL field.
  4. Click Create Webhook to save. All available events are subscribed by default.
  5. Click Activate in the Action column on the new webhook row to start sending event data to n8n.

Step 4: Add a Discord node

  1. In n8n, click + after the Webhook node.
  2. Search for Discord, click it, and select Send a message from the Actions panel.
  3. Click Create new credential and enter your Discord Bot Token.
  4. Select the target Guild (Server) and Channel.
  5. Compose the Message using dynamic fields from the webhook body, such as {{ $json.body.reviewer_name }} and {{ $json.body.testimonial_text }}.

Step 5: Test and activate the workflow

  1. In the Webhook node panel, click Listen for test event, then submit a test testimonial in Feedspace. Verify that n8n receives the payload and a Discord message arrives in your channel.
  2. Click Publish in the top right. The workflow will now run automatically for every new testimonial.

What’s next

  • Add more Discord nodes to post to additional channels.
  • Use n8n’s IF node to filter by star rating before posting.
  • Combine with a Google Sheets node to log testimonials at the same time.

Common questions

Which Discord credential type should I use?

You can use a Discord Bot Token for full bot integration or a Discord Incoming Webhook URL for a simpler setup. The Incoming Webhook URL approach does not require a bot application.

What data does Feedspace send in the webhook payload?

The payload includes fields such as reviewer_name, star_rating, testimonial_text, and testimonial_url, which you can map directly into your Discord message.

Can I send notifications to more than one Discord channel?

Yes. Add multiple Discord nodes after the Webhook trigger in n8n and configure each with a different channel.

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