Whats wrong with this macreo?

/run SendChatMessage("Thanks for the run ^.^,gotta love dat "..GetItemLink("Draconic Satchel of Cooperation"), IsInGroup(LE_PARTY_CATEGORY_INSTANCE) and "INSTANCE_CHAT" or IsInRaid() and "RAID" or "PARTY")

the fact that it exists :dracthyr_sweat:

my guess would be the api for C_Item.GetItemLink takes the item location in your bag as an argument and not a name of an item.

maybe instead of using that api, which I can’t figure out how to use, use

select(2,GetItemInfo(201326))

I only tested it in say in garrison, so IDK if the latter half of the code works or not.

/run SendChatMessage("Thanks for the run ^.^, gotta love dat "..select(2,GetItemInfo(201326)), IsInGroup(LE_PARTY_CATEGORY_INSTANCE) and "INSTANCE_CHAT" or IsInRaid() and "RAID" or "PARTY")

thanks very much dude =D