Is a reason that you aren't using an object to look up the ecommerce order? If you already have the

Is a reason that you aren't using an object to look up the ecommerce order?
If you already have the key something like
{
  "key1": {<order info},
  "key2": {<order info},
}

rather then what I believe you are using which is
[
  {"key": 1, <order info>},
  {"key": 2, <order info>}
]
Was this page helpful?