I am trying to post JSON data to a webhook. What is wrong with my syntax?
[{
"id": "${event.id}",
"title": "${event.data.Title.iv}",
"body": "${event.data.body.iv}"
}]
I have also tried this format, but only title is populated.
[
{
"id": "${CONTENT_DATA.id.iv}",
"title": "${CONTENT_DATA.Title.iv}",
"body": "${CONTENT_DATA.body.iv}"
}
]