Step 1: Install and Set Up n8n
- Sign up for n8n (Cloud) or install it locally following their documentation
- Create a new workflow for each of the main components:
- Product Research Workflow
- Ad Angle Generation Workflow
- Script Generation Workflow
- Ad Performance Analytics Workflow
- Best Ad Script Extraction Workflow
Step 2: Set Up Webhooks
For each workflow:
- Start with a "Webhook" node as the trigger
- Configure it as a POST endpoint
- Copy the generated webhook URL to use in your Airtable automations
- Add a "Switch" node after the webhook to route based on the "action" parameter
Example Switch node setup:
- If
action = "generate_product_details"
→ Route to product research flow
- If
action = "generate_angles"
→ Route to angle generation flow
- If
action = "generate_script"
→ Route to script generation flow
- If
action = "feedback"
→ Route to script revision flow
Step 3: Airtable Integration
For each workflow:
- Add an "Airtable" node after your routing logic
- Configure it to:
- Connect to your Airtable account
- Select the appropriate base and table
- Use the "Get Record" operation
- Use the recordId from the webhook payload
Example config for Product Research flow: