HTTP Widget JSON Path

I am doing a http call with the http widget and get back a valid JSON response with arrays. Now I would like to access the first item in this array. How is the notation for the path? I tried everything from to / and \ and () and . but nothing brings the right solution.

i.e.:
items[0].display_name does not work
items.0.display_name does not work
items/0/display_name does not work
items\0\display_name does not work
items.display_name does not work

Just for testing…I tried only with “items”. This works but of course gives me back all items in the array.

Can anyone help me?

Kind regards,
Flo

I just found the solution with support of a colleague from Zoom.

This works:
items.1.display_name

Arrays do start with a 1 at Zoom. A little special… you just need to know it.

Thank you for sharing this!