Forum Discussion
Through REST Post I am passing below using postman tool:
{
“FIRST_NAME”:“Virender”,
“LAST_NAME”:“Rana”
}
Postman setting:
Key Value
Accept application/json
Authorization Bearer xxxxxxxxxxxxxxxxxxxxxx
content-type application/json.
In mapper input variables I have given two parameters as below:
$FIRST_NAME
$LAST_NAME
Feel free to ask more information if any.
Thanks,
You can pass the input from REST or post-man to pipeline as pipeline parameters from query string.
say for example,
The pipeline is calling from any url like,
www.yoururl/?firstName = Virender&lastName = Rana
Note this parameter from url and pipeline parameter should be same i.e.case sensitive.