JSON Parse Issue

JSON Parse Issue

I am trying to parse response like so 

info response.get('data').get('Store');

and get the following error:

Failed to execute function
  • Argument type mismatch - Found 'DATE-TIME' but Expected '[BIGINT]' for the function 'get' Line Number:16

however, 

info response.get('data');

yields this response:

  • {"Store":{"id":"5553192000000511137"},"id":"5553192000000511194","Name":"VR5"}

Plain response is like so:

  • {"data":[{"Store":{"id":"5553192000000511137"},"id":"5553192000000511194","Name":"VR5"}],"info":{"count":1,"more_records":false}}

What am I missing?