Friends

Delete Friend Request

DELETE
/user/{userId}/friendRequest

Deletes an outgoing pending friend request to another user. To delete an incoming friend request, use the deleteNotification endpoint instead.

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/user/string/friendRequest"
{
  "success": {
    "message": "Friendship request deleted",
    "status_code": 200
  }
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}
{
  "error": {
    "message": "that friend request could not be found",
    "status_code": 404
  }
}