AutomationFlowsWeb Scraping › Regiondo Block Seats Webhook

Regiondo Block Seats Webhook

Regiondo Block Seats Webhook. Uses httpRequest. Webhook trigger; 3 nodes.

Webhook trigger★★★★☆ complexity3 nodesHTTP Request
Web Scraping Trigger: Webhook Nodes: 3 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": "Regiondo Block Seats Webhook",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "block-seats",
        "responseMode": "lastNode",
        "options": {}
      },
      "name": "Webhook",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 1,
      "position": [
        200,
        300
      ]
    },
    {
      "parameters": {
        "jsCode": "const crypto = require('crypto');\n\n// Eure Regiondo Keys (wie im Pull-Workflow)\nconst publicKey = 'MO43f21d011626';\nconst privateKey = '43f21d0f4ba8f05b111626d551fd8509160d0';\nconst timestamp = Math.floor(Date.now() / 1000).toString();\n\n// Daten vom Webhook \u00fcbernehmen\n// Erwartet im Body z.B.: { \"eventId\": \"12345\", \"quantity\": 2, \"category\": \"Kat B\" }\nconst inputData = $input.item.json.body || {};\n\n// Query-String generieren (Hier musst du evtl. anpassen, je nachdem, was Regiondo erwartet)\n// Beispiel: event_id=12345&quantity=2\nconst queryString = `event_id=${inputData.eventId || ''}&quantity=${inputData.quantity || ''}`;\n\n// HMAC Hash erstellen\nconst stringToHash = timestamp + publicKey + queryString;\nconst hash = crypto.createHmac('sha256', privateKey).update(stringToHash).digest('hex');\n\nreturn {\n  json: {\n    ...inputData,\n    'X-API-ID': publicKey,\n    'X-API-TIME': timestamp,\n    'X-API-HASH': hash,\n    'queryString': queryString\n  }\n};"
      },
      "name": "Generate Regiondo Auth HMAC",
      "type": "n8n-nodes-base.code",
      "typeVersion": 1,
      "position": [
        400,
        300
      ]
    },
    {
      "parameters": {
        "method": "POST",
        "url": "https://api.regiondo.com/v1/bookings",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "X-API-ID",
              "value": "={{$json[\"X-API-ID\"]}}"
            },
            {
              "name": "X-API-TIME",
              "value": "={{$json[\"X-API-TIME\"]}}"
            },
            {
              "name": "X-API-HASH",
              "value": "={{$json[\"X-API-HASH\"]}}"
            }
          ]
        },
        "sendBody": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "event_id",
              "value": "={{$json.eventId}}"
            },
            {
              "name": "quantity",
              "value": "={{$json.quantity}}"
            },
            {
              "name": "category",
              "value": "={{$json.category}}"
            },
            {
              "name": "notes",
              "value": "Offline Partner Booking Block"
            }
          ]
        },
        "options": {}
      },
      "name": "HTTP Regiondo Block Capacity",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.1,
      "position": [
        600,
        300
      ]
    }
  ],
  "connections": {
    "Webhook": {
      "main": [
        [
          {
            "node": "Generate Regiondo Auth HMAC",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Generate Regiondo Auth HMAC": {
      "main": [
        [
          {
            "node": "HTTP Regiondo Block Capacity",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {},
  "id": "regiondo-block-seats"
}
Pro

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

About this workflow

Regiondo Block Seats Webhook. Uses httpRequest. Webhook trigger; 3 nodes.

Source: https://github.com/2H-Web-Solutions/mozarthaus_buchungssystem/blob/e933bc9137e00bcf1f99d7ac1ac02c66635ae27e/n8n-regiondo-block-seats.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