How do I use this function in this Roblox to Trello API

So recently I have been trying to use this slightly old Roblox to Trello API

Can anybody tell me how I use the function :GetCardsInList()
I read instructions on how to use it however I cannot figure out how to read the returned table

GetCardsInList([List ID]) returns a table containing the cards in the list
{name=“cardName”,desc=“cardDescription”,…},{name=“cardName”,desc=“cardDescription”,…}
1 Like

You will need to assign the returned table to a variable like

local CardsTable = GetCardsInList(ListID)

What happens next depends on what you are going to do with it. If you are going to change UI values to the values in each nested table, you will need to use an iterator to perform that change.

I’m not sure if the cards are added to the table in any particular order, but it might look like you need to add keys for each card table.

I figured out how to do this, I just returned the table into a variable and then use a for i,v pairs() loop and check the values located in v