Airtable → Trigger.dev Webhook

This service provides webhook endpoints that trigger different Trigger.dev tasks when they receive data from Airtable or other sources.

Available Tasks

  • Fanvue Video Automation

    Processes video content from Airtable records

    /api/fanvue-video-automation
  • Airtable Record Process

    Generic processing of Airtable records

    /api/airtable-record-process
  • Email Notification

    Sends email notifications based on Airtable records

    /api/email-notification

Custom Tasks: You can use any task ID by using the URL pattern:/api/your-custom-task-idAll tasks must be registered in your Trigger.dev project.

New: Custom tasks added in the dashboard are now saved to your browser's local storage and will persist between sessions.

Legacy endpoint: The original /api/airtable-trigger endpoint is maintained for backward compatibility and redirects to the video automation task.

How to Use

  1. In Airtable, set up an automation that triggers when a record is created or updated.

  2. Add a "Send webhook" action with the appropriate endpoint:

    https://yourdeployment.com/api/fanvue-video-automation

    Replace with your deployed URL and desired task ID

  3. Configure the webhook body to include the necessary fields:

    {
      "recordId": "{{recordId}}",
      "fields": {
        "Status": "{{Status}}",
        "Title": "{{Title}}",
        // Include other relevant fields
      }
    }

Testing Your Webhook

Use our Dashboard to test webhooks, add custom tasks, and view activity logs.