Skip to main content

Overview

Trigger Zaps the moment your Airtable data changes. Use a Webhooks by Zapier trigger (Catch Hook) and connect it to a Simplified Webhooks webhook URL.
1
2

Connect Airtable with a Personal Access Token

Create a PAT in Airtable with these scopes:
schema.bases:read
webhook:manage
data.records:read
3

Create your Zap trigger

  1. Add Webhooks by ZapierCatch Hook.
  2. Copy the generated Custom Webhook URL.
4

Create a webhook in Simplified Webhooks

  1. In your dashboard, create a new webhook.
  2. Paste the Zapier Webhook URL.
  3. Select the Airtable Base and Table.
  4. Choose events: create, update, delete.

Test and publish your Zap

Send a test by creating or updating a record in Airtable, then publish the Zap.
Your Zap should run immediately after changes happen in Airtable.

Example event payload

Success
{
  "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"
    }
  }
}