Working with list data from an EXTERNAL API

Hi @vishsahu I have a case regarding a contract. When I check who owns fractions of a particular contract, it returns only the addresses of the people owning that contract, in this format:

[
“0x0bbf9f25c863fdf19e645c96280004d24f43cb38”,
“0x0bd1b3b12db943f2310a4e53481ae97f8b6c2a75”,
“0x281f4727081ab4a066f321fd6fc8dd0dc063e9fd”,
“0x681cbae1c41e5eec8411dd8e009fa71f81d03f7f”,
“0x7b49a05c15702bbe1db534058ebcc9e950c474ca”
]

Each address belongs to a specific person, and in the database, each person has a name and a payout account attached.

I would like to learn the following: Let’s assume I have 1000 addresses and want to deliver payouts to the owners of these projects (because each contract represents a project running on the ground). After getting a list of only addresses, how can I match each address to a specific person, retrieve their payout details or other personal data, and then be able to process the payouts?

Hi @Nigel,

This you have to do with custom code. You will need to fetch the data using uuids and then get the data of person from that uuid.

Thanks.

Thank you for your feedback on this one