Skip to main content

Configure n8n

Add a Webhook node and set method to POST.

Create the webhook in Simplified Webhooks

  1. Create a new webhook and paste the n8n Webhook URL.
  2. Select Base and Table.
  3. Choose the update event.

Payload example

{
  "id": "0abce289-4d03-46ef-80b5-16744c1798a4",
  "event": "update",
  "recordId": "recRPq7LWatCDsBXm",
  "tableId": "tblKn2Ygplrq5Kmbg",
  "baseId": "appatVcKk6xNFwPej",
  "fields": {
    "fldqg4PbziDbWgLok": {
      "name": "Status",
      "current": "In progress",
      "previous": "Todo"
    }
  },
  "meta": {
    "source": "client",
    "occurredAt": "2025-07-14T08:46:25.107Z",
    "user": {
      "id": "usrnwwJUfsBR6EMXl",
      "name": "Test User",
      "email": "test.user@gmail.com"
    }
  }
}
Updated events include both previous and current values per changed field.