AutomationFlowsWeb Scraping › Venuedesk - Services API

Venuedesk - Services API

VenueDesk - Services API. Uses httpRequest. Webhook trigger; 9 nodes.

Webhook trigger★★★☆☆ complexity9 nodesHTTP Request
Web Scraping 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": "VenueDesk - Services API",
  "nodes": [
    {
      "parameters": {
        "path": "get-service-data",
        "responseMode": "responseNode",
        "options": {}
      },
      "id": "060c6300-4332-4939-a15c-c3561b6793d5",
      "name": "Webhook: Get Services",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        0,
        0
      ],
      "credentials": {}
    },
    {
      "parameters": {
        "method": "GET",
        "url": "https://api.venuedesk.co.uk/config/services",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "={{ 'Bearer ' + $env.N8N_SERVICE_JWT }}"
            }
          ]
        },
        "options": {
          "continueOnFail": true
        }
      },
      "id": "svc-http-001",
      "name": "API: Get Services",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        240,
        0
      ]
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={{ JSON.stringify({ data: ($json.data || []) }) }}",
        "options": {
          "responseHeaders": {
            "entries": [
              {
                "name": "Access-Control-Allow-Origin",
                "value": "*"
              }
            ]
          }
        }
      },
      "id": "8c8b61bd-7aa7-4b23-bc82-4710a95d27d5",
      "name": "Respond: Services",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        480,
        0
      ]
    },
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "save-service",
        "responseMode": "responseNode",
        "options": {}
      },
      "id": "cc3c4800-4a8c-422c-ac27-ef08d416b35e",
      "name": "Webhook: Save Service",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        0,
        224
      ],
      "credentials": {}
    },
    {
      "parameters": {
        "method": "POST",
        "url": "https://api.venuedesk.co.uk/config/services/upsert",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "={{ 'Bearer ' + ($('Webhook: Save Service').first().json.body?.jwt || '') }}"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        },
        "sendBody": true,
        "contentType": "json",
        "specifyBody": "json",
        "jsonBody": "={{ JSON.stringify({ id: ($('Webhook: Save Service').first().json.body?.id || undefined), name: $('Webhook: Save Service').first().json.body?.name, type: ($('Webhook: Save Service').first().json.body?.type || 'flat'), price: parseFloat($('Webhook: Save Service').first().json.body?.price || '0'), active: $('Webhook: Save Service').first().json.body?.active !== false }) }}",
        "options": {
          "continueOnFail": true
        }
      },
      "id": "svc-http-002",
      "name": "API: Upsert Service",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        240,
        224
      ]
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={{ JSON.stringify({ status: 'success', data: $json.data }) }}",
        "options": {
          "responseHeaders": {
            "entries": [
              {
                "name": "Access-Control-Allow-Origin",
                "value": "*"
              }
            ]
          }
        }
      },
      "id": "55b9bee6-8581-42df-88fc-c16a043757cb",
      "name": "Respond: Saved",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        480,
        224
      ]
    },
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "delete-service",
        "responseMode": "responseNode",
        "options": {}
      },
      "id": "deaba163-5b79-4aad-905a-c18f61df2f49",
      "name": "Webhook: Delete Service",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        0,
        448
      ],
      "credentials": {}
    },
    {
      "parameters": {
        "method": "POST",
        "url": "https://api.venuedesk.co.uk/config/services/delete",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "={{ 'Bearer ' + ($('Webhook: Delete Service').first().json.body?.jwt || '') }}"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        },
        "sendBody": true,
        "contentType": "json",
        "specifyBody": "json",
        "jsonBody": "={{ JSON.stringify({ id: $('Webhook: Delete Service').first().json.body?.id }) }}",
        "options": {
          "continueOnFail": true
        }
      },
      "id": "svc-http-003",
      "name": "API: Delete Service",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        240,
        448
      ]
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "{\"status\":\"success\",\"message\":\"Service deleted.\"}",
        "options": {
          "responseHeaders": {
            "entries": [
              {
                "name": "Access-Control-Allow-Origin",
                "value": "*"
              }
            ]
          }
        }
      },
      "id": "73ceb5f3-97d7-443a-ac71-57ca0f0bd6f4",
      "name": "Respond: Deleted",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        480,
        448
      ]
    }
  ],
  "connections": {
    "Webhook: Get Services": {
      "main": [
        [
          {
            "node": "API: Get Services",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "API: Get Services": {
      "main": [
        [
          {
            "node": "Respond: Services",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Webhook: Save Service": {
      "main": [
        [
          {
            "node": "API: Upsert Service",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "API: Upsert Service": {
      "main": [
        [
          {
            "node": "Respond: Saved",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Webhook: Delete Service": {
      "main": [
        [
          {
            "node": "API: Delete Service",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "API: Delete Service": {
      "main": [
        [
          {
            "node": "Respond: Deleted",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": true,
  "settings": {
    "executionOrder": "v1",
    "binaryMode": "separate",
    "availableInMCP": true
  },
  "versionId": "svc-v2-2026-04-27",
  "id": "CAMkeQepkci8aiMl",
  "tags": []
}
Pro

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

About this workflow

VenueDesk - Services API. Uses httpRequest. Webhook trigger; 9 nodes.

Source: https://github.com/AndyJay72/VenueDesk/blob/357f073ffbab5a7f86a7cfafd458cbc2b538d386/n8n-workflows/ServicesAPI.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

Community Node Disclaimer: This workflow uses KlickTipp community nodes.

Crypto, Custom, N8N Nodes Klicktipp +1
Web Scraping

Automatically sync Fizzy cards to Basecamp todos in real-time. When cards are created, assigned, completed, or reopened in Fizzy, the changes sync instantly to your Basecamp project. Card tags determi

HTTP Request, N8N Nodes Basecamp
Web Scraping

This workflow automates accounts payable: upload a PDF invoice, let Claude AI extract the key fields, and automatically create a vendor bill (incoming invoice) in Odoo 18.

HTTP Request
Web Scraping

Chat Ia. Uses httpRequest. Webhook trigger; 28 nodes.

HTTP Request
Web Scraping

JS-15B: Donor Cascade Engine. Uses httpRequest. Webhook trigger; 28 nodes.

HTTP Request