Hi all,
We are just getting onboarded into AJO, and we started building test journey to test a few things. One of the thing I am testing is to for AJO to read a segment, and send a POST Call to a slack integrated channel to display a simple message.
The Slack POST endpoint looks something like this: https://hooks.slack.com/services/xyz and accepts a BODY data:
{text: "abc"}
The test is to display "Abc" as a message in the slack channel, and this has been successful.
I am wondering if there's a way to add variable values (say, I want to add a profile attribute value, the ID - all readily configured in data sources) into the POST body?
The end output I am looking for is something like this: "text: "Account:" & @IDvariable & "received the message"
Output: Account 123 received the message.
Thanks!