ClickUp node Comment - it's possible to use formatting and mention?

Hey,

do you know if it’s possible to use formatting and mention using comment in current clickup node?

I tried to use markdown and “@” as tag someone but it doesn’t work.

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hey @rafuru,

It looks like we don’t support the formatting option in the node at the moment but it would make a good feature request. It looks like tagging / mentioning users is also part of the formatting so may not be possible in the node but it would be possible if you wanted to manually build out the API request using the HTTP Request node.

1 Like

Thanks,
I it made with HTTP node as you said.
I send as JSON body something like this:

{
 "comment": [
   {
     "text": "text1"
   },
   {
     "type": "tag",
     "user": {
       "id": {{ $json["assignees"][0]["id"]}}
     }
   },
   {
     "text": "\ntext 2"
   }
 ]
}

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.