question

gooby avatar image
gooby asked

Purchased economy item statistics and analytics

Hello,

How can i go about seeing the statistics/analytics for inventory items (legacy), such as which are most purchased recently/this month/all time, which are least rated, etc.

Player Inventory
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Neils Shi avatar image
Neils Shi answered

Legacy Economy does not provide the function of viewing the most purchased items. As a workaround, you may use Data Explorer to query the most purchased items, the Data Explorer will store the events for 30 days. For example, if players use API PurchaseItem to purchase items with virtual currency, you can use the following example query expression below. For more info, you can refer to https://learn.microsoft.com/en-us/gaming/playfab/data-analytics/learn-data/data-explorer/getting-started-with-data-explorer-advanced .

 ['events.all']
 | where FullName_Name == 'player_vc_item_purchased'
 | summarize count() by tostring(EventData.ItemId)

Regarding the item rating function, Legacy Economy does not support it. And since Legacy Economy are in maintenance mode and will not be receiving any new features, you may consider using Economy v2, which provides a ratings and review system. For more information, you can refer to https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/ratings .

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.