I’m trying to retrieve a JSON file via a webhook, but I only get back binary data from HTTP (Get a File) that I can’t parse. I need the data to send it field by field to Google Sheets.
As you can see, the webhook contains the link to the json file. When I copy the link into the browser, the download starts. But when I try to get it via HTTP module, it only gets file.bin data.
You can use a “Convert encoding” module using the same input and output encoding, then you can use the output of this module in your Parse JSON module.
Alternatively, you can simply try using the toString built-in function in the mapped field, something like this: toString(data)