AutomationFlowsWeb Scraping › ClickUp Task Paid Status Automation

ClickUp Task Paid Status Automation

Original n8n title: {{client_name}} - V08 Co Paid Recalc

{{client_name}} - v08 CO Paid Recalc. Uses httpRequest. Webhook trigger; 6 nodes.

Webhook trigger★★★★☆ complexity6 nodesHTTP Request
Web Scraping Trigger: Webhook Nodes: 6 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": "{{client_name}} - v08 CO Paid Recalc",
  "nodes": [
    {
      "id": "wh",
      "name": "ClickUp Webhook",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        0,
        300
      ],
      "parameters": {
        "path": "{{slug}}-v08",
        "httpMethod": "POST",
        "responseMode": "onReceived"
      }
    },
    {
      "id": "gt",
      "name": "Get Task",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "position": [
        220,
        300
      ],
      "parameters": {
        "method": "GET",
        "url": "={{ \"https://api.clickup.com/api/v2/task/\" + $json.body.task_id }}",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Authorization",
              "value": "{{clickup_token}}"
            }
          ]
        },
        "options": {}
      }
    },
    {
      "id": "s1",
      "name": "Ext",
      "type": "n8n-nodes-base.set",
      "typeVersion": 3,
      "position": [
        440,
        300
      ],
      "parameters": {
        "mode": "manual",
        "assignments": {
          "assignments": [
            {
              "id": "a1",
              "name": "tn",
              "type": "string",
              "value": "={{ $json.name }}"
            },
            {
              "id": "a2",
              "name": "cv",
              "type": "number",
              "value": "={{ parseFloat(($json.custom_fields||[]).find(f=>f.name===\"Contract Value\")?.value||0) }}"
            },
            {
              "id": "a3",
              "name": "st",
              "type": "string",
              "value": "={{ $json.status?.status||\"\" }}"
            }
          ]
        },
        "options": {}
      }
    },
    {
      "id": "i1",
      "name": "Done?",
      "type": "n8n-nodes-base.if",
      "typeVersion": 2,
      "position": [
        660,
        300
      ],
      "parameters": {
        "conditions": {
          "options": {
            "caseSensitive": false
          },
          "conditions": [
            {
              "id": "c1",
              "leftValue": "={{ $json.st }}",
              "operator": {
                "type": "string",
                "operation": "equals"
              },
              "rightValue": "complete"
            }
          ]
        }
      }
    },
    {
      "id": "sl1",
      "name": "Paid",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "position": [
        880,
        200
      ],
      "parameters": {
        "method": "POST",
        "url": "https://hooks.slack.com/services/{{slack_webhook}}",
        "sendBody": true,
        "contentType": "json",
        "specifyBody": "keypair",
        "bodyParameters": {
          "parameters": [
            {
              "name": "text",
              "value": "={{ \"CO Paid: \"+$json.tn+\" \u2014 $\"+$json.cv }}"
            }
          ]
        },
        "options": {}
      }
    },
    {
      "id": "no1",
      "name": "Not Yet",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "position": [
        880,
        400
      ],
      "parameters": {}
    }
  ],
  "connections": {
    "ClickUp Webhook": {
      "main": [
        [
          {
            "node": "Get Task",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get Task": {
      "main": [
        [
          {
            "node": "Ext",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Ext": {
      "main": [
        [
          {
            "node": "Done?",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Done?": {
      "main": [
        [
          {
            "node": "Paid",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Not Yet",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionTimeout": 30
  }
}
Pro

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

About this workflow

{{client_name}} - v08 CO Paid Recalc. Uses httpRequest. Webhook trigger; 6 nodes.

Source: https://github.com/scubarichard/rpe-systems/blob/main/workflows/workflow-v08-co-paid-recalc.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

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
Web Scraping

Sign PDF documents with legally-compliant digital signatures using X.509 certificates. Supports multiple PAdES signature levels (B, T, LT, LTA) with optional visible stamps.

Execute Command, HTTP Request, Read Write File +1
Web Scraping

📡 This workflow serves as the central Alpha Vantage API fetcher for Tesla trading indicators, delivering cleaned 20-point JSON outputs for three timeframes: , , and . It is required by the following a

HTTP Request