In Postman I can get this working no problem to pass in a string per parameter for 2 parameters:
[ "Paramter string 1", "Paramter string 2"]
What I eould like to be able to do is pass any JSON to Mongoose into a single paramter which I will deal with in Mongoose, something like this:
{ "terms": { }, "seriesDetail": { "FXCADUSD": { "label": "CAD/USD", "description": "Canadian dollar to US dollar daily exchange rate", "dimension": { "key": "d", "name": "Date" } } }, "observations": [ { "d": "2024-01-03", "FXCADUSD": { "v": "0.7487" } }, { "d": "2024-01-02", "FXCADUSD": { "v": "0.7510" } } ]}
Any ideas how I can format this so it passes the JSON as is into a single parameter?