Skip to main content

Quote freight shipments via WhatsApp with Google Gemini, HighLevel, and Warp

Workflow preview

Workflow preview
100%
Quote freight shipments via WhatsApp with Google Gemini, HighLevel, and Warp preview
Open on n8n.io

1. Workflow Overview

Quick overview Youtube Video: https://youtu.be/kO4LgKT6oME?si=VpUEz2LKuxMujrUp This workflow receives WhatsApp messages, checks the sender in HighLevel, and uses Google Gemini with Redis chat memor...

Best for

  • Lead Nurturing automation workflows
  • AI Chatbot automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.whatsapptrigger, n8n-nodes-base.if, n8n-nodes-base.highlevel, @n8n/n8n-nodes-langchain.agent, @n8n/n8n-nodes-langchain.lmchatgooglegemini, n8n-nodes-base.highleveltool, @n8n/n8n-nodes-langchain.outputparserstructured

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by iamvaar.

Original n8n.io source

1.1 Workflow description

Title
Quote freight shipments via WhatsApp with Google Gemini, HighLevel, and Warp
Workflow name
Quote freight shipments via WhatsApp with Google Gemini, HighLevel, and Warp

Quick overview

Youtube Video: https://youtu.be/kO4LgKT6oME?si=VpUEz2LKuxMujrUp This workflow receives WhatsApp messages, checks the sender in HighLevel, and uses Google Gemini with Redis chat memory to collect shipment details, then requests an LTL quote from the Warp API, applies a commission, and replies with either a conversational prompt or a final freight quote.

How it works

  1. Receives an incoming WhatsApp message and only continues when the text body is not empty.
  2. Looks up the sender’s phone number in HighLevel and stops contacts marked as Do Not Disturb from being processed further.
  3. Uses a Google Gemini-powered agent with Redis chat memory to ask for missing contact and freight details in a fixed order, optionally creating the HighLevel contact or marking the lead as DND when the user opts out.
  4. Parses the agent’s structured JSON output and checks whether the required shipment data collection is complete.
  5. If data is incomplete, sends the agent’s conversational reply back to the user via WhatsApp.
  6. If data is complete, posts the shipment details to the Warp LTL quote API, adds a configured commission percentage to the returned price, and sends the finalized quote back to the user via WhatsApp.

Setup

  1. Connect WhatsApp credentials for both the WhatsApp Trigger and WhatsApp “send message” actions, and configure the webhook in Meta/WhatsApp so inbound messages reach this workflow.
  2. Add a HighLevel OAuth2 credential and confirm your HighLevel account has permission to search contacts, create contacts, and update the DND field.
  3. Add a Google Gemini (PaLM) API credential and a Redis credential for chat memory, and ensure Redis is reachable from your n8n instance.
  4. Add an HTTP Header Auth credential for the Warp API and verify the quote endpoint URL, headers, and request body fields match your Warp account requirements.
  5. Adjust the commission percentage value (and any quoting assumptions like weight per pallet) to match your pricing policy.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - When WhatsApp Message Received

Type / Role
n8n-nodes-base.whatsAppTrigger - whatsAppTrigger
Config choices
Version 1

Block 7 - Check Message Content

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 8 - Fetch HighLevel Contacts

Type / Role
n8n-nodes-base.highLevel - highLevel
Config choices
Version 2

Block 9 - Lead Processing Agent

Type / Role
@n8n/n8n-nodes-langchain.agent - agent
Config choices
Version 3.1

Block 10 - Google Gemini Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatGoogleGemini - lmChatGoogleGemini
Config choices
Version 1.1

Block 11 - Offload Lead Tool

Type / Role
n8n-nodes-base.highLevelTool - highLevelTool
Config choices
Version 2

Block 12 - If Not Do Not Disturb

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 13 - Create Contact Tool

Type / Role
n8n-nodes-base.highLevelTool - highLevelTool
Config choices
Version 2

Block 14 - Parse Structured Output

Type / Role
@n8n/n8n-nodes-langchain.outputParserStructured - outputParserStructured
Config choices
Version 1.3

Block 15 - If Data Collected

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.3

Block 16 - Send WhatsApp Message

Type / Role
n8n-nodes-base.whatsApp - whatsApp
Config choices
Version 1.1

Block 17 - Post Quote Request

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.4

Block 18 - Set Commission Percentage

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 19 - Calculate Commissioned Rate

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 20 - Send Quote to WhatsApp

Type / Role
n8n-nodes-base.whatsApp - whatsApp
Config choices
Version 1.1

Block 21 - Redis Chat Memory1

Type / Role
@n8n/n8n-nodes-langchain.memoryRedisChat - memoryRedisChat
Config choices
Version 1.6

3. Summary Table

Workflow Quote freight shipments via WhatsApp with Google Gemini, HighLevel, and Warp
Complexity advanced
Nodes 21
Categories Lead Nurturing, AI Chatbot
Author iamvaar
Published 15 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16385/16385.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Quote freight shipments via WhatsApp with Google Gemini, HighLevel, and Warp do?

Quick overview Youtube Video: https://youtu.be/kO4LgKT6oME?si=VpUEz2LKuxMujrUp This workflow receives WhatsApp messages, checks the sender in HighLevel, and uses Google Gemini with Redis chat memor...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Lead Nurturing, AI Chatbot use case.