i'm using webhook to slack.
and throw data type of json to slack.
for example about custom data:
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "{{comment.body}}"
}
if it is assigned double quote(") in smart value({{comment.body}}, occur invalid_payload error. so I tried some way, like using quote(), or replace(), but it doesn't work at that form.
i comfirmed it worked smart value where is in non json type data like "Send slack message(it is one of action type"
anybody help me?