AutomationFlowsAI & RAG › Ghl Bridge (stub — Activar Cuando Ghl Esté Contratado)

Ghl Bridge (stub — Activar Cuando Ghl Esté Contratado)

16 — GHL Bridge (STUB — activar cuando GHL esté contratado). Uses httpRequest. Webhook trigger; 4 nodes.

Webhook trigger★★★★☆ complexity4 nodesHTTP Request
AI & RAG Trigger: Webhook Nodes: 4 Complexity: ★★★★☆ Added:

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "name": "16 \u2014 GHL Bridge (STUB \u2014 activar cuando GHL est\u00e9 contratado)",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "ghl-sync",
        "responseMode": "onReceived",
        "options": {}
      },
      "id": "wf16-webhook",
      "name": "Webhook: ghl-sync",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "// \u2500\u2500\u2500 GHL Field Mapping \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n// Mapa de campos TuAgenteStore \u2192 GoHighLevel\n// Activar cuando se contrate GHL (Starter USD 97/mes recomendado)\n// API Docs: https://highlevel.stoplight.io/docs/integrations/\n//\n// PARA ACTIVAR:\n// 1. Contratar GHL en https://gohighlevel.com\n// 2. Settings > Integrations > API > crear API Key\n// 3. Agregar GHL_API_KEY al .env del VPS\n// 4. Activar este workflow en n8n\n\nconst body = $input.first().json.body || $input.first().json;\n\nconst ghlContact = {\n  firstName:    (body.name || '').split(' ')[0],\n  lastName:     (body.name || '').split(' ').slice(1).join(' '),\n  email:        body.email,\n  phone:        body.whatsapp,\n  companyName:  body.company,\n  // Custom fields GHL\n  customFields: [\n    { id: 'problem_area',   field_value: body.problem_area },\n    { id: 'budget_range',   field_value: body.budget_range },\n    { id: 'company_size',   field_value: body.company_size },\n    { id: 'channel_origin', field_value: body.channel_origin },\n    { id: 'agent_interest', field_value: body.agent_interest || '' },\n    { id: 'lead_source',    field_value: 'tuagentestore.com' }\n  ],\n  tags: ['tuagentestore', body.problem_area, body.channel_origin].filter(Boolean)\n};\n\nconst ghlOpportunity = {\n  title:       `[TAS] ${body.name} \u2014 ${body.problem_area}`,\n  status:      'open',\n  stageId:     'STAGE_ID_NUEVO',     // Reemplazar con ID real del pipeline stage\n  pipelineId:  'PIPELINE_ID_VENTAS', // Reemplazar con ID real\n  monetaryValue: 397,                // Ticket m\u00ednimo USD\n  assignedTo:  'USER_ID_ADMIN'       // Reemplazar con ID del usuario GHL\n};\n\nreturn [{ json: { ...body, ghl_contact: ghlContact, ghl_opportunity: ghlOpportunity } }];"
      },
      "id": "wf16-map-fields",
      "name": "Mapear campos \u2192 GHL",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        480,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "https://rest.gohighlevel.com/v1/contacts/",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "Bearer {{ $env.GHL_API_KEY }}"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        },
        "sendBody": true,
        "specifyBody": "json",
        "jsonBody": "={{ JSON.stringify($json.ghl_contact) }}",
        "options": {}
      },
      "id": "wf16-create-contact",
      "name": "GHL: crear/actualizar contacto",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "position": [
        720,
        300
      ],
      "notes": "STUB \u2014 necesita GHL_API_KEY en .env. Ver comentarios en nodo anterior."
    },
    {
      "parameters": {
        "jsCode": "// Actualizar ghl_contact_id en TuAgenteStore DB (v\u00eda API interna)\nconst ghlResponse = $input.first().json;\nconst leadId = $('Mapear campos \u2192 GHL').first().json.lead_id;\n\nif (!ghlResponse.contact?.id || !leadId) {\n  return [{ json: { skipped: true, reason: 'No contact ID or lead ID' } }];\n}\n\nconst res = await fetch(`${$env.NEXT_APP_URL || 'https://tuagentestore.com'}/api/admin/reservations/${leadId}`, {\n  method: 'PATCH',\n  headers: {\n    'Content-Type': 'application/json',\n    'x-webhook-secret': $env.WEBHOOK_SECRET_INTERNAL\n  },\n  body: JSON.stringify({ ghl_contact_id: ghlResponse.contact.id })\n});\n\nreturn [{ json: { ok: res.ok, ghl_contact_id: ghlResponse.contact?.id } }];"
      },
      "id": "wf16-update-db",
      "name": "Actualizar ghl_contact_id en DB",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        960,
        300
      ]
    }
  ],
  "connections": {
    "Webhook: ghl-sync": {
      "main": [
        [
          {
            "node": "Mapear campos \u2192 GHL",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Mapear campos \u2192 GHL": {
      "main": [
        [
          {
            "node": "GHL: crear/actualizar contacto",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "GHL: crear/actualizar contacto": {
      "main": [
        [
          {
            "node": "Actualizar ghl_contact_id en DB",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {
    "executionOrder": "v1",
    "timezone": "America/Argentina/Buenos_Aires"
  },
  "tags": [
    "ghl",
    "crm",
    "stub",
    "pending"
  ]
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

16 — GHL Bridge (STUB — activar cuando GHL esté contratado). Uses httpRequest. Webhook trigger; 4 nodes.

Source: https://github.com/tuagentestore/tuagentestorev1/blob/84e9ae604e58c97a2e136a4296f8f2ac59006f3a/n8n-workflows/workflow-16-ghl-bridge.json — original creator credit. Request a take-down →

More AI & RAG workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

AI & RAG

Jigsaw API key for image processing, I use this as a gatekeeper/second pair of eyes. LINK to their website https://jigsawstack.com/ SECOND A postgress DATABASE (I use Supabase) LlamaCloud for the pars

HTTP Request, Postgres, Stop And Error +2
AI & RAG

Onsite Photos to Jobs (SMS Agent). Uses dataTable, twilio, httpRequest, airtable. Webhook trigger; 62 nodes.

Data Table, Twilio, HTTP Request +1
AI & RAG

AML Alert Triage. Uses httpRequest. Webhook trigger; 57 nodes.

HTTP Request
AI & RAG

W1 - IN WhatsApp Adapter (Secure + Fast ACK). Uses postgres, redis, httpRequest. Webhook trigger; 50 nodes.

Postgres, Redis, HTTP Request
AI & RAG

W1 - IN WhatsApp Adapter (Secure + Fast ACK). Uses postgres, redis, httpRequest. Webhook trigger; 48 nodes.

Postgres, Redis, HTTP Request