n8n Template: Store Chat Data in Supabase PostgreSQL for WhatsApp/Slack Integration
This n8n template captures chat data (like user ID, name, or address) and saves it to a Supabase PostgreSQL database. Itβs built for testing now but designed to work with WhatsApp, Slack, or similar platforms later, where chat inputs arenβt predefined.
Step 1: Configure Firewall Rules in Your VPC Network
To let your n8n instance talk to Supabase, add a firewall rule in your VPC network settings (e.g., Google Cloud, AWS, etc.).
1. Go to VPC Network settings.
2. Add a new firewall rule:
– Name: allow-postgres-outbound
– Direction: Egress (outbound traffic)
– Destination Filter: IPv4 ranges
– Destination IPv4 Ranges: 0.0.0.0/0 (allows all; restrict to Supabase IPs for security)
– Source Filter:
– Pick IPv4 ranges and add the n8n VMβs IP range, or
– Pick None if any VM can connect
– Protocols and Ports:
– Protocol: TCP
– Port: 5432 (default PostgreSQL port)
3. Save the rule.
Step 2: Get the Supabase Connection String
Log into your Supabase Dashboard.
1. Go to your project, click the Connect button in the header.
2. Copy the PostgreSQL connection string:
– postgresql://postgres.fheraruzdahjd:[YOUR-PASSWORD]@aws-0-eu-central-1.pooler.supabase.com:6543/postgres
3. Replace [YOUR-PASSWORD] with your Supabase account password (no brackets) and replace the string before that with your actual unique identifier.
4. Note the port (6543 or 5432)βuse whatβs in the string.
Step 3: Set Up the n8n Workflow
This workflow takes chat data, maps it to variables, and stores it in Supabase. Itβs built to handle messy chat inputs from platforms like WhatsApp or Slack in production.
Workflow Steps:
– Trigger Node: “When clicking ‘Test workflow'” (manual trigger). For now, itβs manual. In production, this will be a WhatsApp or Slack message trigger, which wonβt have a fixed input format.
– Set Node: “Set sample input variables (manual)”. This node sets variables like id, name, and address to mimic chat data. Why? Chat platforms send unstructured data (e.g., a message with a userβs name or address). We map it to variables so we can store it properly. The id will be something unique like a phone number, account ID, or account number.
– Sample Agent Node: Uses a model (e.g., GeminiFlash2.0 but doesn’t matter). This is a placeholder to process data (e.g., clean or validate it) before saving. You can skip or customize it.
– Supabase PostgreSQL Node: “Supabase PostgreSQL Database”. Connects to Supabase using the connection string from Step 2. Saves the variables (id, name, address) to a table. Why store extra fields? The id (like a phone number or account ID) is the key. Extra fields like name or address let us keep all user info in one place for later use (e.g., analytics or replies).
– Output Node: “Update additional values e.g., name, address”. Confirms the data is saved. In production, this could send a reply to the chat platform.
Why This Design?
– Handles Unstructured Chat Data: WhatsApp or Slack messages donβt have a fixed format. The “Set” node lets us map any incoming data (e.g., id, name) to our database fields.
– Scales for Production: Using id as a key (phone number, account ID, etc.) with extra fields like name makes this workflow flexible for many use cases, like user profiles or support logs.
– Future-Ready: Itβs built to swap the manual trigger for a real chat platform trigger without breaking.
Step 4: Configure the Supabase PostgreSQL Node
In the n8n workflow, set up the Supabase PostgreSQL node:
– Host: aws-0-eu-central-1.pooler.supabase.com (from the connection string)
– Port: 6543 (or whatβs in the connection string)
– Database: postgres
– User: postgres.fhspudlibstmpgwqmumo (from the connection string)
– Password: Your Supabase password
– SSL: Enable (Supabase usually requires it)
Set the node to Insert or Update:
– Map id to a unique column in your Supabase table (e.g., phone number, account ID).
– Map fields like name, address to their columns.
Test the workflow to confirm data saves correctly.
Security Tips
– Limit Firewall Rules: Donβt use 0.0.0.0/0. Find Supabaseβs IP ranges in their docs and use those.
– Hide Passwords: Store your Supabase password in n8nβs environment variables.
– Use SSL: Enable SSL in the n8n node for secure data transfer.