How can I get the name in Json?

[{
“name”:“test1”
},
{
“name”:“test2”
}]

2 Likes

This JSON is a list with 2 elements.

To get the first element in the list do this

For the second element, instead of get # 1 in the list block change it to get # 2.

3 Likes

Thanks

1 Like