Alex P
03/20/2023, 7:43 PMflag1[enabled]=true&transfer[destination]=target_account&metadata[userId]=1-2-3-4&metadata[sessionId]=a-b-c
I am having a hard time to use the values in the response. I am parsing the form via
{{formData request.body 'params' urlDecode=true}}
and I can see the values fine when doing
{{#each params}}
{{@index}} - {{@key}} - {{this}}
{{/each}}
But I cannot access the individual fields, no matter what I try, e.g.,
{{"metadata[userId]"}}
{{metadata\[userId\]}}
{{metadata.userId}}
My Google-fu also failed me 😕Tom
03/20/2023, 8:16 PMlookup
helper e.g.
{{lookup params 'transfer[destination]'}}
Alex P
03/21/2023, 8:35 AM