I'm trying to make a command that outputs players collectibles and summarizes the total recentAveragePrice
of the listed items. The problem is when I'm trying to output any part of this API, it just outputs undefined
.
if (command === "inv"){
let getInv = async () => {
let response = await axios.get("https://inventory.roblox.com/v1/users/1417341214/assets/collectibles?sortOrder=Asc&limit=100");
let inv = response.data;
return inv;
}
let invValue = await getInv();
console.log(invValue);
message.channel.send(`${invValue.data.name} \n ${invValue.data.recentAveragePrice}`);
}