AutomationFlowsWeb Scraping › Managecallai — Ivr Flow Published

Managecallai — Ivr Flow Published

ManageCallAI — IVR Flow Published. Uses httpRequest. Webhook trigger; 4 nodes.

Webhook trigger★★★★☆ complexity4 nodesHTTP Request
Web Scraping Trigger: Webhook Nodes: 4 Complexity: ★★★★☆ Added:

This workflow corresponds to n8n.io template #managecallai-ivr-flow-published — we link there as the canonical source.

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": "ManageCallAI \u2014 IVR Flow Published",
  "meta": {
    "templateId": "managecallai-ivr-flow-published",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "a1b2c3d4-0001-0001-0001-000000000001",
      "name": "Webhook Trigger",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        240,
        300
      ],
      "parameters": {
        "httpMethod": "POST",
        "path": "managecall-events",
        "responseMode": "onReceived",
        "options": {
          "rawBody": true
        }
      },
      "notes": "Register this URL in ManageCallAI under Automation \u2192 Webhooks. Subscribe to ivr_flow.published."
    },
    {
      "id": "a1b2c3d4-0001-0001-0001-000000000003",
      "name": "Verify Signature",
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        460,
        300
      ],
      "parameters": {
        "jsCode": "const crypto = require('crypto');\n\nfunction verify(item, secret, tol = 300) {\n  const h = item.headers ?? {};\n  const ts = parseInt(h['x-managecall-timestamp'] ?? '0', 10);\n  if (Math.abs(Date.now() / 1000 - ts) > tol) throw new Error('timestamp_expired');\n  const body = typeof item.body === 'string' ? item.body : JSON.stringify(item.body ?? {});\n  const expected = 'sha256=' + crypto.createHmac('sha256', secret).update(`${ts}.${body}`).digest('hex');\n  const received = h['x-managecall-signature-256'] ?? '';\n  if (!received) throw new Error('missing_signature');\n  if (!crypto.timingSafeEqual(Buffer.from(expected), Buffer.from(received))) throw new Error('signature_mismatch');\n}\n\nconst secret = $env.MANAGECALL_WEBHOOK_SECRET;\nverify($input.first(), secret);\nreturn $input.all();"
      },
      "notes": "Set MANAGECALL_WEBHOOK_SECRET in n8n environment variables."
    },
    {
      "id": "a1b2c3d4-0001-0001-0001-000000000004",
      "name": "Fetch Flow Details",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        680,
        300
      ],
      "parameters": {
        "method": "GET",
        "url": "={{ $env.MANAGECALL_API_URL }}/api/v1/ivr-flows/{{ $json.body.data.flow_id }}",
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "options": {}
      },
      "credentials": {
        "httpHeaderAuth": {
          "name": "<your credential>"
        }
      },
      "notes": "Credential type: Header Auth. Header name: Authorization. Value: Bearer <api_key>."
    },
    {
      "id": "a1b2c3d4-0001-0001-0001-000000000005",
      "name": "Notify Slack",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        900,
        300
      ],
      "parameters": {
        "method": "POST",
        "url": "={{ $env.SLACK_WEBHOOK_URL }}",
        "sendBody": true,
        "contentType": "json",
        "body": {
          "text": ":white_check_mark: IVR flow *{{ $('Fetch Flow Details').item.json.data.name }}* (v{{ $json.body.data.version_number }}) published by {{ $json.body.data.triggered_by_type }}.",
          "blocks": [
            {
              "type": "section",
              "text": {
                "type": "mrkdwn",
                "text": ":white_check_mark: *IVR Flow Published*\n*Flow:* {{ $('Fetch Flow Details').item.json.data.name }}\n*Version:* {{ $json.body.data.version_number }}\n*Actor:* {{ $json.body.data.triggered_by_type }}\n*Tenant:* {{ $json.headers['x-managecall-tenant'] }}"
              }
            }
          ]
        },
        "options": {}
      },
      "notes": "Set SLACK_WEBHOOK_URL in n8n environment variables."
    }
  ],
  "connections": {
    "Webhook Trigger": {
      "main": [
        [
          {
            "node": "Verify Signature",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Verify Signature": {
      "main": [
        [
          {
            "node": "Fetch Flow Details",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Fetch Flow Details": {
      "main": [
        [
          {
            "node": "Notify Slack",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {
    "executionOrder": "v1"
  }
}

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

ManageCallAI — IVR Flow Published. Uses httpRequest. Webhook trigger; 4 nodes.

Source: https://github.com/gokbilge/manageCallAI/blob/main/docs/examples/n8n/ivr-flow-published.json — original creator credit. Request a take-down →

More Web Scraping workflows → · Browse all categories →

Related workflows

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

Web Scraping

This n8n template provides enterprise-level version control for your workflows using GitHub integration. Stop losing hours to broken workflows and manual exports – get proper commit history, visual di

n8n, Execute Workflow Trigger, HTTP Request +1
Web Scraping

This flow creates dummy files for every item added in your *Arrs (Radarr/Sonarr) with the tag .

HTTP Request, Ssh
Web Scraping

eek-Go v2 (Batch-Then-Review). Uses httpRequest. Webhook trigger; 75 nodes.

HTTP Request
Web Scraping

This workflow receives webhook requests from a content calendar and uses the X API v2 to publish text posts, threads, image/video posts, and polls, as well as delete existing posts and run a credentia

HTTP Request
Web Scraping

This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system. It listens for incoming webhook requests and dynamically routes them to the c

HTTP Request