Forum Discussion
We might need a bit more information on what you want to pass in and from where.
For example, to get information from a URL may require a REST Get before the Mapper.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_NAMEFeel 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 = RanaNote this parameter from url and pipeline parameter should be same i.e.case sensitive.