Unmoderate User
Removes a player moderation previously added through moderateUser. E.g if you previously have shown their avatar, but now want to reset it to default.
Requests made through this page are proxied through an intermediary server due to Cross-Origin Resource Sharing restrictions.
auth<token>
Auth Token via Cookie
In: cookie
moderatedstring
A users unique ID, usually in the form of usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469. Legacy players can have old IDs in the form of 8JoV9XEdpo. The ID can never be changed.
typestring
Default
"unmute"Value in
"mute" | "unmute" | "block" | "unblock" | "interactOn" | "interactOff"Response Body
application/json
application/json
curl -X PUT "https://api.vrchat.cloud/api/1/auth/user/unplayermoderate" \
-H "Content-Type: application/json" \
-d '{
"moderated": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469",
"type": "unmute"
}'{
"success": {
"message": "User usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469 unmoderated",
"status_code": 200
}
}{
"error": {
"message": "\"Missing Credentials\"",
"status_code": 401
}
}