Hello,
I’ve got a simple question. I’m trying to send POST to an external API the complete Thing itself. So I’ve got a whole bunch of things that I’m trying to put together into a JSON.
{“Thing1”:"",“Thing2”:"",“Thing3”:""}
and send it over API post to an external API.
I don’t want to be going through each ‘THING’ and defining each field. Which is very very time consuming as each THING has about 20 fields and I’m looking at about 5 Things in total… so apart from me going through and mapping every single field, any other way like to do a JSON stringify and put it into a text field and then POSTING it?