3
I want to go through all the keys of a json so I can get all of its values. Ex:
{
  "logistics_provider": "{{lp_name}}",
  "shipper": "{{co_common_name}}",
  "invoice_key": "{{ae_identifier}}",
  "invoice_series": "{{ae_identifier}}",
  "volume_number": "1",
   "events": [
  {
        "event_date": "{{ae_date}}",
        "original_code": "{{ae_code_event}}",
        "original_message": "{{ae_comment}}"
  }]
}
So I want the values {{lp_name}}, {{co_common_name}} etc. ...
You want even inside those who are arrays?
– Sorack