HI,
I am trying to read from a Dictionary output provided by the box connected system as shown below . How to read each items such as ID and type to a local variable ?
I tried fn!index(local!folderContents,"id") but it is giving me null output
Please help me
Discussion posts and replies are publicly visible
Hi Ramanan,
You can use index() function twice to get the entries (i.e. 2 dataset). Post that you can have a!forEach through which you can extract fv!item.id.
For your reference:
a!forEach(
items: index( index( local!folderContents,"result",{}), "entries",{}),
expression: fv!item.id
)