Connect Furmbase to the other tools in your stack — Slack, Zapier, Notion, and webhooks.
Integrations connect form activity to the rest of your tools, so a new response can trigger a notification, create a record, or kick off a workflow elsewhere.
| Integration | What it does |
|---|---|
| Google Sheets | Sync responses to a spreadsheet in real time — see Google Sheets |
| Slack | Post a message to a channel when a form receives a new response |
| Notion | Create a new database row from each completed response |
| Zapier | Connect Furmbase to thousands of apps via Zaps |
| Webhooks | Send a raw HTTP POST to any URL you control |
Open a form's Integrations tab, choose one from the list, and follow the connection flow — most integrations authenticate through the third-party service directly and take under a minute to set up.
Webhooks send a JSON payload to a URL of your choice every time a response is submitted — the most flexible option if you're building a custom integration.
{
"event": "form.response.completed",
"form_id": "frm_8k3n2p",
"response_id": "res_91mv0q",
"submitted_at": "2026-07-28T14:32:00Z",
"answers": [
{ "question": "Full name", "value": "Jordan Lee" },
{ "question": "Plan interested in", "value": "Business" }
]
}All active integrations for a form are listed under its Integrations tab, where you can pause, reconfigure, or disconnect them at any time without affecting the form itself.