ClickUp Automation Calling a Webhook on n8n

Hello, everyone!
I have created a custom field in ClickUp (checkbox) to execute an integration in n8n, I tested this using trigger “task.updated” from ClickUp, and work very well, but this trigger occurs many times in my list of ClickUp, then I’m tried to make automation in ClickUp to call a Webhook just when “checkbox” change, the automation work internal in ClickUp (change status, values…) but the webhook is not actioned. If I call Webhook manually works well.

{
“nodes”: [
{
“parameters”: {
“path”: “681b38a7-d40c-4846-843e-932c7f1699f6”,
“options”: {}
},
“name”: “Webhook”,
“type”: “n8n-nodes-base.webhook”,
“typeVersion”: 1,
“position”: [
-400,
160
],
“webhookId”: “681b38a7-d40c-4846-843e-932c7f1699f6”
}
],
“connections”: {}
}

Information on y

clickup


  • n8n version: 0.186.1
  • Database you’re using (default: SQLite):
  • Running n8n with the execution process own(default):
  • Running n8n via n8n.cloud and desktop app]:

Hi @theprates

There is a few things that might be happening.
Are you sure you are using the correct URL? There is an url for when the workflow is active and for when you manually click on “listen for test event”. I see you are using the webhook-test, so thats the manual version. Did you activate the test listener when testing with clickup?

Also you are using the webhook with “Get” method. Most likely Clickup is using the “Post” method. So changing this to post in n8n would fix that. Note: you cannot easily test it with the browser then anymore, you will need to use a tool like postman to create test post requests.

2 Likes

Hi @BramKn

Thanks for your time and the quick answer!
I’ve changed the method from “get” to “post” and it did work as you said!

2 Likes