Feedspace Home Dashboard

How Do I Create a Webhook in Feedspace?

Last updated on June 15, 2026

Overview

A webhook in Feedspace sends real-time data to a URL you control whenever a review event occurs. You create the webhook by entering your server’s endpoint URL, and then select which review events should trigger it. This lets you receive notifications or trigger workflows in your own system the moment a new review comes in.

Before You Start

  • Have a server or service ready to receive POST requests. The endpoint URL must use HTTPS. HTTP URLs are not accepted.
  • Check the Feedspace webhook documentation to understand the payload format your endpoint will receive.

Steps

  1. In the left sidebar, click Automation under the Workspace section.
  2. Click the Webhook tab at the top of the Automation page.
  3. Click Create Webhook.
  4. In the modal that opens, enter your Endpoint URL. The URL must start with https://.
  5. Click Create Webhook to save.
  6. After the webhook is created, click Edit on the webhook row to open the event selection panel and choose which events this webhook should receive.

The webhook is now active and will start sending data to your endpoint when the selected events occur.

Common Confusion

My webhook was created but I am not receiving any data

After creating the webhook, you must select at least one event for it to send data. Open the webhook row, click Edit, and choose the review events you want to receive.

Can I have more than one webhook?

Yes. You can create multiple webhooks, each pointing to a different endpoint and listening to different events. The number of active webhooks available depends on your plan.

Troubleshooting

I see a validation error when entering my URL

Check that the URL starts with https:// and is a properly formatted web address. URLs starting with http:// are rejected. Also make sure there are no spaces or special characters in the URL.

I have reached the maximum number of webhooks

If you see a message saying you have reached the webhook limit, you need to delete an existing webhook before creating a new one, or upgrade your plan to unlock more webhooks.

What You Can Do Next

  • Click Edit on the new webhook to select which review events it should receive.
  • Copy the webhook secret shown in the row to verify incoming requests on your server.
  • Deactivate a webhook temporarily if you need to pause delivery without deleting it.

You might also find helpful

What is Webhook in Feedspace?

Overview Webhooks in Feedspace are a way to notify your application about important events in real-time. Instead of repeatedly checking the API for updates, webhooks push data instantly whenever an event occurs, making your workflows faster and more efficient. Why Use Webhooks in Feedspace? Available Webhook Events Feedspace allows you...

How Do I Manage Webhook Events in Feedspace?

Overview After you create a webhook in Feedspace, you choose which review events it listens to. You can update the event selection at any time without deleting or recreating the webhook. How to Select Events for a Webhook Available Webhook Events Common Confusion Do I need to recreate the webhook...

How Do I Generate API Keys in Feedspace?

Overview The API tab in the Automation section lets you generate an API Key and a Secret Key for programmatic access to your Feedspace workspace. Use these credentials when building custom integrations, fetching reviews from your own code, or connecting Feedspace to a CRM or other software system. Before You...