I'm pretty new with using postman and I'm trying to store one part of the JSON response of my request in a variable. My problem is that the JSON doesn't have tags. It looks like this:
[
"01000511",
"00000001",
"00000009",
"01000654"
]
Is it possible to store the JSON as an array and create variables like this: id1=response[0], id2=response[1]? Thanks in advance!

