Playermoderation

Unmoderate User

PUT
/auth/user/unplayermoderate

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.

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Request Body

application/json

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": "PlayerModerations of type undefined removed",
    "status_code": 200
  }
}

{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}