Skip to main content

Webhook setup

Receive real-time data from external tools by creating a webhook endpoint in Genuics.

Webhooks let external tools push data into Genuics in real time. When something happens in another service - a form submission, a payment, a new issue - that service sends a JSON payload to your Genuics webhook URL, and the data lands in your dataset automatically.

This is the best option when you want data to arrive the moment it's created, without waiting for a scheduled sync. Available on Starter plan and above.

How it works

  1. You create a webhook connector in Genuics and get a unique URL.
  2. You paste that URL into the external tool's webhook settings.
  3. When the external tool fires an event, it sends a JSON payload to your URL.
  4. Genuics receives the payload, maps the fields, and inserts the data into your dataset.

Create a webhook connector

  1. Go to Setup > Connectors and click Add connector.
  2. Select Webhook.
  3. Give your webhook a name (e.g., "Typeform Responses" or "Stripe Payments").
  4. Choose an existing dataset to send data to, or create a new one.
  5. Click Create. Genuics generates a unique webhook URL and an authentication token.

You'll see your webhook URL and token on the connector detail page. Copy both - you'll need them in the next step.

Configure the sending tool

Every tool handles webhooks slightly differently, but the general steps are the same:

  1. Open the settings or integrations page of the external tool (Typeform, Stripe, GitHub, etc.).
  2. Find the Webhooks section and add a new webhook.
  3. Paste your Genuics webhook URL.
  4. If the tool supports custom headers, add an Authorization header with the value Bearer YOUR_TOKEN (replace YOUR_TOKEN with the token from Genuics).
  5. Save the webhook in the external tool.

Common integrations

Here's where to find webhook settings in popular tools:

ToolWhere to find it
TypeformConnect > Webhooks on the form settings page
TallyIntegrations > Webhooks on the form editor
JotformSettings > Integrations > Webhooks
StripeDevelopers > Webhooks in the Stripe Dashboard
GitHubRepository Settings > Webhooks
GitLabProject Settings > Webhooks
SentrySettings > Integrations > Webhooks (or Internal Integration)
LinearSettings > API > Webhooks

Send a test payload

After configuring the external tool, verify the connection works:

  1. Trigger a test event in the external tool. For a form, submit a test response. For Stripe, use a test-mode event. For GitHub, push a commit or create a test issue.
  2. Go back to your webhook connector in Genuics and check the Recent deliveries section.
  3. You should see the test payload listed with a success status. Click it to inspect the raw JSON.

If the delivery shows an error, check the troubleshooting section below.

Security options

Token authentication

Every Genuics webhook includes a unique authentication token. External tools must include this token in the Authorization header. Requests without a valid token are rejected with a 401 Unauthorized response.

Webhook secret verification

For tools that sign their payloads (like Stripe and GitHub), you can add an extra layer of verification:

  1. On the webhook connector detail page, click Security settings.
  2. Enter the webhook signing secret from the external tool (e.g., Stripe's whsec_... value).
  3. Genuics verifies the signature on every incoming request and rejects any payload with an invalid or missing signature.

IP allowlist

If you know the IP addresses that the external tool sends from, you can restrict your webhook to only accept traffic from those addresses:

  1. On the webhook connector detail page, click Security settings.
  2. Under IP allowlist, add the IP addresses or CIDR ranges to allow.
  3. Any request from an IP not on the list is rejected.

Map incoming fields

When Genuics receives a webhook payload, it flattens the JSON and maps each field to a dataset column. You can customize this mapping on the Field mapping tab of the connector:

  • Map nested JSON fields (e.g., answers.0.text) to named columns
  • Set field types (Metric, Dimension, Date, Open-end, ID)
  • Ignore fields you don't need

See Field mapping for the full guide.

Troubleshooting

IssueSolution
Deliveries show 401 UnauthorizedThe external tool isn't sending the correct token. Check the Authorization header.
Deliveries show 400 Bad RequestThe payload format may be unexpected. Inspect the raw JSON in Recent deliveries.
No deliveries appearConfirm the webhook URL is correct in the external tool. Check for typos.
Data arrives but columns are emptyYour field mapping may not match the payload structure. Send a test payload and adjust the mapping.

Next steps

Once your webhook is receiving data, review Field mapping to refine how incoming fields are stored, or check Sync status and troubleshooting to monitor delivery health over time.

Was this helpful?