Map Incoming JSON Body
I have a requirement for a pipeline that is supposed to accept an incoming JSON body/payload of attributes in place of sending parameters via the task URL for security related reasons.
For the sake of simplicity, we are trying to accept something in a similar format as seen here:
{
“ID”: 15,
“firstName”: “Jon”,
“lastName”: “Smith”
}
So far we have tried to “accept” incoming data through a Mapper snap with no success. We have tested the pipeline by executing the task URL, and passing the JSON body data in tandem. We’ve tried formatting a Mapper snap in the following way at the beginning of our pipeline:
Is there a way of doing this correctly with the default, OOTB snaps? We do not currently utilize any extra snap packs. Thank you for the help in advance.
The beginning snap should be a JSON Parser that would feed into your Mapper snap.