Feedspace Home Dashboard

How Do I Verify Feedspace Webhook Signatures?

Last updated on June 22, 2026

Overview

Feedspace signs every webhook payload with a secret key so your server can verify the request is genuine. By checking the signature before processing the payload, you can confirm the request came from Feedspace and reject any spoofed or tampered requests.

Step 1: Get your webhook secret

  1. Log in to your Feedspace dashboard and click Automation in the left sidebar.
  2. Click the Webhook tab.
  3. Find your webhook row. In the Secret column, click the Eye icon to reveal the secret value.
  4. Click the Copy icon to copy the secret to your clipboard.

Store this secret as an environment variable on your server. Never hard-code it in your source code or commit it to version control.

Step 2: Implement signature verification

For the exact header name, signing algorithm, and code examples, refer to the official Feedspace webhook reference documentation. The documentation covers the full verification flow for all supported languages.

What’s next

  • Read the webhook reference documentation for the full signature verification guide and code examples.
  • Test your webhook integration using a temporary URL service before connecting your production endpoint.
  • Rotate your webhook secret from the Feedspace dashboard if you suspect it has been exposed.

You might also find helpful

How Do I Use Webhooks in Feedspace?

Overview Feedspace provides webhooks to notify your application about important events in real-time. With webhooks, you can automatically trigger workflows in your system whenever reviews are collected on Feedspace. Reference: Feedspace Webhook Documentation Step 1: Access the webhook tab Step 2: Add your endpoint URL Step 3: Select events to...

How Do I Test My Feedspace Webhook Integration?

Overview Before connecting your production server, you can test your Feedspace webhook integration using a free temporary URL service. This lets you inspect the exact JSON payload Feedspace sends, confirm your event selection is correct, and validate your signature verification code, all without writing a single line of server code...

What Is the Feedspace REST API?

Overview The Feedspace REST API is a JSON-based HTTP API that gives developers direct, programmatic access to their Feedspace workspace. Using the API, you can submit reviews from your own application, retrieve reviews to display in a custom UI, automate review pipelines, and sync Feedspace data with external systems, all...