Bidding data in a table

Hi there!

Yes I know, sounds easy, but I don´t find the way to explain, here is my little trouble.
I have a data (I have the information from the api)

All the information its fine, but in the data have another information, if I put {{currentRow[“clients”]}} show me these information:

image

But I only want to display ID information, I try this:

{{currentRow[“clients.id”]}}

But dont work

Any idea?

Thanks in advance!

Hello!

If currentRow['clients] returns [ [ {"id": "838383", ...} ] ], then you would want to use something like
{{currentRow['clients'][0][0].id}}

Thank you! works, so sorry, I am newbie in this.

It’s totally fine @cc546451.