Friends

Unfriend

DELETE
/auth/user/friends/{userId}

Unfriend a user by ID.

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Path Parameters

userId*string

Must be a valid user ID.

Response Body

application/json

application/json

application/json

curl -X DELETE "https://api.vrchat.cloud/api/1/auth/user/friends/string"
{
  "success": {
    "message": "Friendship destroyed",
    "status_code": 200
  }
}
{
  "error": {
    "message": "These users are not friends",
    "status_code": 400
  }
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}