Authentication

Update Interests and Preferences

PUT
/auth/user/interestsAndPreferences

Turns interests and preferences on with true and off with false. A key the body leaves out keeps its value, and an unknown key or a value that is not a boolean is ignored.

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Request Body

application/json

Response Body

application/json

application/json

application/json

curl -X PUT "https://api.vrchat.cloud/api/1/auth/user/interestsAndPreferences" \  -H "Content-Type: application/json" \  -d '{}'
{
  "success": {
    "message": "Interests and preferences updated!",
    "status_code": 200
  }
}
{
  "error": {
    "message": "JSON failed to parse.",
    "status_code": 400
  }
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}