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
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.