Feedspace Home Dashboard

How Do I Send Customers to My Feedspace Form Automation via Webhook?

Last updated on July 20, 2026

The incoming webhook lets any external tool enroll customers in your Feedspace form automation by sending a simple HTTP POST request. When a new customer signs up, makes a purchase, or completes any trigger event in your other tools, those tools can POST the customer’s name and email directly to Feedspace, no manual imports needed. The customer is added to your contacts list immediately and enters the email sequence on the configured schedule.

What You Can Do

  • Automatically enroll new customers from any tool or app that can make HTTP POST requests
  • Connect custom-built apps or backend systems using the provided endpoint and credentials
  • Eliminate the need for CSV uploads or manual entry as customers are added in real time

1. Find Your Webhook Endpoint

  • Log in to Feedspace and go to Forms in the left sidebar.
  • On the form card, click the Edit (pencil) icon to open the editor, then click the Automation tab.
  • In the Who should we email? section, click Add customers.
  • Select the Incoming Webhook tab.
  • Copy the endpoint URL shown: https://api.feedspace.io/v3/contacts

2. Get Your API Credentials

The endpoint uses Basic Auth. You will need two values from your Feedspace workspace:

  • Username: Your Feedspace API Key
  • Password: Your Feedspace Secret Key

Find both keys in your Feedspace workspace by opening the Automation section from the left sidebar, then the API tab.

3. Configure Your HTTP Request

In whichever tool or app you use, configure an HTTP POST request with the following:

  • Method: POST
  • URL: The endpoint shown in the Incoming Webhook tab in Feedspace
  • Authentication: Basic Auth using the API Key (username) and Secret Key (password) shown in the same tab
  • Body (JSON):
    • name: the customer’s name
    • email: the customer’s email address

4. Test the Connection

Trigger a test event in your tool to send one customer to the endpoint. Check your contacts list in the Feedspace Automation tab, the test contact should appear within a few seconds. A successful POST returns a 200 OK response.

Common Questions

Does this endpoint add contacts to a specific form or to the whole workspace?

The /v3/contacts endpoint adds contacts to your workspace-level contacts list. Once added, they are available to any form automation in that workspace that has them in scope based on tag filters.

Where do I find my API Key and Secret Key?

Open your review form, click the Automation tab, go to Add customers, and select the Incoming Webhook tab. Your API Key and Secret Key are displayed there, ready to copy.

You might also find helpful

How Do I Add Customers to My Feedspace Form Automation?

Your automation only sends emails to customers you have explicitly added. Feedspace gives you four ways to build your recipient list: manually one by one, via a CSV upload, via an incoming webhook, or through a platform integration. Once a customer is added, they are enrolled in your sequence and...

How Do I Connect Integrations to My Feedspace Form Automation?

The Integrations tab inside your review form’s Automation section lets you connect the tools you already use, so customers are automatically added to your review request email sequence without any manual work. Connect your platform once and Feedspace continuously syncs new customers into your automation. What You Can Do Step...

How Do I Import Customers from CSV for My Feedspace Form Automation?

Importing a CSV is the fastest way to enroll a large customer list into your Feedspace form automation. You upload a spreadsheet of names and email addresses, and Feedspace adds every valid row to your contacts list in one step. Once imported, customers are enrolled in your email sequence and...