Skip to main content

Configure n8n

Add a Webhook node:
  • HTTP Method: POST
  • Copy the Production URL

Create the webhook in Simplified Webhooks

  1. Create a new webhook in your dashboard.
  2. Paste the n8n Webhook URL.
  3. Select Base and Table.
  4. Choose the create event.

Payload example

You receive a JSON body like this:
{
  "id": "6aa496db-5006-4bf7-be4b-06e50e65ad96",
  "event": "create",
  "recordId": "rec4yurm8f16BwMFj",
  "tableId": "tblKn2Ygplrq5Kmbg",
  "baseId": "appatVcKk6xNFwPej",
  "fields": {
    "fld...": {
      "name": "..",
      "current": ".."
    },
    "fldp...": {
      "name": "...",
      "current": "..."
    }
  },
  "meta": {
    "source": "client",
    "occurredAt": "2025-07-14T08:45:06.405Z",
    "user": {
      "id": "usr...",
      "name": "Test User",
      "email": "test.user@gmail.com"
    }
  }
}
Create triggers include only current values.