You have to provide a bit more info. What you are doing in your code is just copying a lua table to another lua table which i don’t realy see why as you can assign it directly to keep a reference to it: LocalAccount = response.
If your whole table response is a lua table aswell then I imagine it is a table holding records as lua tables like you get in a single record response. If you are parsing the response in to a lua table then you have to include that code in your question. You can keep a reference to it the same way, you just have to read it differently. For example reading the ID field from the second record would look like
local LocalAccounts = response
local id = LocalAccounts[2][“ID”]
Good luck.