Hi,
I wanted to know if there is a way to add dynamic values to a POST request using REST Task in application integration?
Solved! Go to Solution.
You sure can.
That payload takes a message template. You can specify variables surrounded by $. For example:
{
"input1" : "$name_of_integration_variable$",
"input2" : "$another_integration_variable$"
}
You sure can.
That payload takes a message template. You can specify variables surrounded by $. For example:
{
"input1" : "$name_of_integration_variable$",
"input2" : "$another_integration_variable$"
}
@dchiesa1 Thanks 🙂