question

Georg Gerstweiler avatar image
Georg Gerstweiler asked

Economy v2 performance of individual items

We are planning to use the Economy v2 to manage our items. Is there a way so see the purchase activities of individual items of the last view months?

In-Game Economy
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

If you mean you want to see the purchase activity of a specific item in the last few months, then PlayFab Economy v2 currently does not support this feature. As a workaround, you may use Data Explorer (https://learn.microsoft.com/en-us/gaming/playfab/data-analytics/learn-data/data-explorer/getting-started-with-data-explorer-advanced) to query the specific item’s purchase activity, the Data Explorer will store the events for 30 days. For example, if players use API PurchaseInventoryItems to purchase the items, you can use the following example query expression :

 ['events.all'] 
    
 | where FullName_Name == 'items_purchased'
    
 | where EventData.Payload.ItemId == 'xxxxxxxxxxxx'
    
 | summarize sum(toint(EventData.Payload.Amount))
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.