Application Integration: How to add dynamic input request in POST call of REST task

Hi,

I wanted to know if there is a way to add dynamic values to a POST request using REST Task in application integration?

@dchiesa1

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$"
}
2 Likes

@dchiesa1 Thanks :slightly_smiling_face: