Hello, I have this data as response in Postman:
data: {
child": {
"child2": {
"child3": {
"B07C5": {
"name": value},
"B01Z3": {
"name": value}, ....}}}}
I would likt to visualize the value.
However I’m unable to do this, since I have the dynamic id (e.g. B07CF) as “headline”.
I tried this:
{{#each response.data}}
<tr>
<td>{{[email protected]}}</td>
</tr>
{{/each}}
Unfortunately this doesn’t work.
I tried also @this and @value, but this doesn’t work either.
Can somebody help me here please?