Hi there,
I have a requirement to read data from one Rest Api using Http client and then use a specific field value to set to another SOAP api request parameter in payload.Has anyone dealt with such design in a data collector pipeline?
I
Example:
Get the ssn field value from rest api and pass that ssn response value as request payload in another soap api
get rest api SSN = “6698776” field response
and pass this SSN value in soap api request payload
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:hel="http://learnwebservices.com/services/memberdata">
<soapenv:Header/>
<soapenv:Body>
<hel:SayHello>
<hel:HelloRequest>
<hel:Name>test</hel:Name>
<hel:SSN>6698776</hel:SSN>
</hel:HelloRequest>
</hel:SayHello>
</soapenv:Body>
</soapenv:Envelope>