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.
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.
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.
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"
}
]
}
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.