Trying to send JSON data to a webhook. Is there a way to properly format the output for valid JSON?
My payload:
[{
“id”:"${CONTENT_ID}",
“title”:"${CONTENT_DATA.Title.iv}",
“body”: “${CONTENT_DATA.body.iv}”
}]
My output:
Trying to send JSON data to a webhook. Is there a way to properly format the output for valid JSON?
My payload:
[{
“id”:"${CONTENT_ID}",
“title”:"${CONTENT_DATA.Title.iv}",
“body”: “${CONTENT_DATA.body.iv}”
}]
My output:
You can use something like:
${EVENT_USER.NAME | Escape}
There are a few of these operators
very nice! that worked perfectly! I noticed that if the payload is empty, you automatically escape everything.