Create UGC Feedback
In this How-to, we'll go through how to report User Generated Content (UGC).
Prerequisites
Retrieve Category IDs
Before we can create the Feedback report, we first need to find the category to report the content under.
If you only have a single category, you could manually retrieve the category ID from the LootLocker Console. However, if you have multiple categories, you should list the categories and let the player choose which category to report under.
When working with Category IDs manually in your code, be aware that switching between environments (e.g. development, staging, production) requires you to modify which ID is used in your game code. This is not the case when using the endpoint to list the categories.
To retrieve all the categories, we can use the following code:
Find Category ID for UGC Reports
Send UGC Report
Now that we have the category ID, we can send the UGC report.
To send a UGC report, we need to provide the following information:
The category ID
The ULID of the Asset being reported
Optionally a description, which can be entered by the player or filled in by the game
Conclusion
In this How-to, we've gone through how to list categories and report UGC. If you want to learn more you can read our Create Game Feedback or Create Player Feedback How-to's.
Last updated