I’m making web endpoint requests to get the assetId’s of the clothes a player is wearing. The only trouble is I cannot actually get the shirts and pants to load properly since they need the contentId inside their ShirtTemplate property - I cannot simply use their shirts assetId.
I have no idea which endpoint (only, no in-house methods) to use to aquire the shirts content id.
Plz help.
Hello, you can get the content id of the clothing item by using the https://assetdelivery.roblox.com/v1/asset?id=${assetId} endpoint. This endpoint should return some XML data, which you would ideally use an XML parser for, or you can do some string searching if you don’t feel like going through the hassle.