Way to delete inventory items using API?

Hello! Is there any ROBLOX API that I could use to delete an asset from my inventory? From the minimal searching I’ve done, I can’t find anything.

I have over 500 of those free “badgewalk” badges and I want to get rid of them. I wouldn’t have an issue using a plugin like BT Roblox and going through and manually selecting each one then pressing Delete, but Roblox is, well, being Roblox… and will only let me see 7 of the badges at a time. I believe it would be easiest to use the API and loop through my inventory and delete all badges by a certain user.
Any help or other methods are appreciated.

2 Likes

To delete:
DELETE /v1/user/{userId}/badges/{badgeId} Removes a badge from the user
DELETE /v1/user/badges/{badgeId} Removes a badge from the authenticated user.

To get:
GET /v1/users/{userId}/badges Gets a list of badges a user has been awarded.

4 Likes