Thanks for the reply.
Unfortunately I cannot pass the JSON as a parameter because it contains spaces.
I found how to solve it:
- first I transform raw value into string with JSON.stringify ()
- then encode the result to eliminate annoying spaces and characters with encodeURI (). I don’t know why the base64 encode was giving problems
Like this: {{encodeURI(JSON.stringify($node[“Typeform Trigger”].json[“form_response”][“answers”]))}}
I was inspired by this post