> ## Documentation Index
> Fetch the complete documentation index at: https://simplified-webhooks.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Watch New Airtable Records in n8n

> Trigger n8n instantly when new Airtable records are created.

### Configure n8n

Add a <b>Webhook</b> node:

* <b>HTTP Method</b>: POST
* Copy the <b>Production URL</b>

### 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 <code>create</code> event.

### Payload example

You receive a JSON body like this:

```json theme={null}
{
  "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"
    }
  }
}
```

<Info>
  Create triggers include only <code>current</code> values.
</Info>
