Passing JSON object to the URL in http connector

Hello,

 

I need to pass a JSON object to an API call that is made using GET method with an http URL. I was told that the JSON object cannot be passed as a parameter but must be sent as a JSON object in the call. An example was given for a Linux CURL method like below but I am not sure how to do this using http connector in pipeline pilot. Has anybody done this before? Is there any other component I need to use instead of http connector?

 

curl -H X-CDD-Token:apitoken -H "Content-Type: application/json" -X GET -d "@myJSON.json" https://URLto the API....