AutomationFlowsMarketing & Ads › List and Manage Local Falcon Campaigns via Webhook

List and Manage Local Falcon Campaigns via Webhook

List and manage Local Falcon campaigns via webhook. Uses @local-falcon/n8n-nodes-localfalcon. Webhook trigger; 9 nodes.

Webhook trigger★★★★☆ complexity9 nodes@Local Falcon/N8N Nodes Localfalcon
Marketing & Ads Trigger: Webhook Nodes: 9 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": "List and manage Local Falcon campaigns via webhook",
  "nodes": [
    {
      "parameters": {
        "content": "## List and Manage Local Falcon Campaigns via Webhook\n\n**Who is this for:** Developers building dashboards or tools that need to interact with Local Falcon campaigns programmatically.\n\n**What this workflow does:**\n1. Exposes a webhook API endpoint\n2. Supports actions: list, get, pause, resume campaigns\n3. Returns campaign data in JSON format\n4. Enables building custom campaign management interfaces\n\n**How to set up:**\n1. Add your Local Falcon API credentials (get your key at https://www.localfalcon.com/api/credentials)\n2. Activate the workflow\n3. Copy the webhook URL\n4. Send requests with action parameter\n\n**Requirements:**\n- Local Falcon account with API access\n- Existing campaigns to manage\n\n**API Usage:**\n```\nGET /webhook/lf-campaigns?action=list\nGET /webhook/lf-campaigns?action=get&campaign_key=xxx\nPOST /webhook/lf-campaigns\n{\"action\": \"pause\", \"campaign_key\": \"xxx\"}\n```\n\n**How to customize:**\n- Add authentication to the webhook\n- Extend with campaign creation\n- Build a full management API\n- Add rate limiting",
        "height": 560,
        "width": 460,
        "color": 5
      },
      "id": "sticky-main",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        100,
        -200
      ]
    },
    {
      "parameters": {
        "content": "### Step 1: Webhook\nReceives management requests.",
        "height": 100,
        "width": 200
      },
      "id": "sticky-step1",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        40,
        640
      ]
    },
    {
      "parameters": {
        "content": "### Step 2: Route Action\nDirects to appropriate handler.",
        "height": 100,
        "width": 200
      },
      "id": "sticky-step2",
      "name": "Sticky Note2",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        300,
        640
      ]
    },
    {
      "parameters": {
        "content": "### Step 3: Execute\nPerforms the campaign action.",
        "height": 100,
        "width": 200
      },
      "id": "sticky-step3",
      "name": "Sticky Note3",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        560,
        640
      ]
    },
    {
      "parameters": {
        "content": "### Step 4: Respond\nReturns results as JSON.",
        "height": 100,
        "width": 200
      },
      "id": "sticky-step4",
      "name": "Sticky Note4",
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        820,
        640
      ]
    },
    {
      "parameters": {
        "httpMethod": "=GET,POST",
        "path": "lf-campaigns",
        "responseMode": "responseNode",
        "options": {}
      },
      "id": "webhook",
      "name": "Campaign API Endpoint",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        140,
        420
      ]
    },
    {
      "parameters": {
        "jsCode": "const request = $input.first().json;\nconst action = request.query?.action || request.body?.action || 'list';\nconst campaignKey = request.query?.campaign_key || request.body?.campaign_key;\n\nreturn [{\n  json: {\n    action: action,\n    campaign_key: campaignKey\n  }\n}];"
      },
      "id": "parse-request",
      "name": "Parse Request",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        400,
        420
      ]
    },
    {
      "parameters": {
        "resource": "campaign",
        "operation": "list",
        "additionalFields": {
          "limit": 100
        }
      },
      "id": "list-campaigns",
      "name": "List Campaigns",
      "type": "@local-falcon/n8n-nodes-localfalcon.localFalcon",
      "typeVersion": 1,
      "position": [
        660,
        420
      ],
      "credentials": {
        "localFalconApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={\n  \"success\": true,\n  \"action\": \"{{ $('Parse Request').item.json.action }}\",\n  \"campaigns\": {{ JSON.stringify($json.campaigns || []) }},\n  \"total\": {{ ($json.campaigns || []).length }}\n}",
        "options": {}
      },
      "id": "respond",
      "name": "Return Results",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        920,
        420
      ]
    }
  ],
  "connections": {
    "Campaign API Endpoint": {
      "main": [
        [
          {
            "node": "Parse Request",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Parse Request": {
      "main": [
        [
          {
            "node": "List Campaigns",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "List Campaigns": {
      "main": [
        [
          {
            "node": "Return Results",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "meta": {
    "templateCredsSetupCompleted": true
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

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

About this workflow

List and manage Local Falcon campaigns via webhook. Uses @local-falcon/n8n-nodes-localfalcon. Webhook trigger; 9 nodes.

Source: https://github.com/local-falcon/n8n-templates/blob/3dd7676046b6b8efc3bda40821cc944664db80f2/templates/21-list-and-manage-campaigns.json — original creator credit. Request a take-down →

More Marketing & Ads workflows → · Browse all categories →

Related workflows

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

Marketing & Ads

This workflow automates bulk email campaigns with built-in validation, deliverability protection, and smart send-time optimization.

HTTP Request, Postgres, Gmail
Marketing & Ads

Who is this for? Solo founders, sales teams, and event organizers who need email outreach without expensive tools but want full control from Telegram.

Telegram, Google Sheets, Google Sheets Trigger +2
Marketing & Ads

Universal Lead Processing Workflow. Uses googleSheets, gmail, httpRequest, gmailTrigger. Webhook trigger; 34 nodes.

Google Sheets, Gmail, HTTP Request +1
Marketing & Ads

This workflow turns Feishu bot messages into a human-in-the-loop short-video production pipeline, using Tavily for web search, DeepSeek for topic and script generation, Jimeng AI for text-to-video, an

HTTP Request
Marketing & Ads

This workflow is designed to manage the assignment and validation of unique QR code coupons within a lead generation system with SuiteCRM.

HTTP Request, Form Trigger, Google Sheets +1