How can I get this data?

Hi, I have this product (woocommerce) with optional fields, how can I intercept the FullName field?

array(1) {
  ["11e2ec9f9b8d59ee5d71e103c301a96b"]=>
  array(13) {
    ["_field_service"]=>
    array(5) {
      ["_index"]=>
      int(0)
      ["_fields"]=>
      array(3) {
        [0]=>
        array(3) {
          ["_key"]=>
          string(14) "fullname"
          ["_label"]=>
          string(14) "FullName"
          ["_value"]=>
          string(11) "Andrew Bitoni"
        }

Thank u

Hi @Mauro_Madonia, Where do you get this output ? converted to json in chatgpt and this gives :

@Mauro_Madonia, Ok this is weird because you have both keys and values as values and a duplicate of fullName data. Just choose “Value” I guess ? Are you having trouble choosing this key in next modules or ?

Yes, I’m not very familiar with the tool, and I’m finding it difficult to extract the FullName value (Nome e Cognome)… this is what I’m trying now

But it doesn’t work…

And here it doesn’t show me in the array in the side window but only the first element “event id”

@Mauro_Madonia, I see. From the example you provided of all 5 values in ‘Meta data’, I’m confident that ‘Value’ and ‘displayValue’ names are both same thing and you could just choose ‘Value’ for example.

In the photo you provided, just click on ‘Value’ to reference it. Don’t look at what’s written in gray on the right side too much, if values change from row to row it might not show correct examples of the ‘expected’ column values.

I solved it, your help was essential to understand how it worked, thanks

{{22.metaData[2].value}}

by doing an array integrator on “line items”, I can extract the value of the second array that contains the fullname.

3 Likes