hi,
I’ve a API Workflow which is acting as a Webhook. I’m receiving a complex object
[{data: "sample", something:"...", car: {color:"blue",size:"big"}, etc}]
I’m using the Toolbox to re-create a proper array to consume it inside with an “API Workflow on a list”. But I’m unable to use the “Request Data’s raw body text” inside the server-side javascript plugin.
Inside the “node server side script” I do this :
typeform_parsed = JSON.parse(Request Data's raw body text).form_response.answers;
But I’m having the error : SyntaxError: Unexpected token u in JSON at position 0 at JSON.parse (<anonymous>) at eval (eval at <anon...