Friends

Send Boop

POST
/users/{userId}/boop

Send a boop to another user.

Authorization

authCookie
auth<token>

Auth Token via Cookie

In: cookie

Path Parameters

userId*string

Must be a valid user ID.

Request Body

application/json

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.vrchat.cloud/api/1/users/string/boop" \  -H "Content-Type: application/json" \  -d '{}'
{
  "success": {
    "message": "User booped!",
    "status_code": 200
  }
}
{
  "error": {
    "message": "These users are not friends",
    "status_code": 400
  }
}
{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}
{
  "error": {
    "message": "user doesn't existǃ",
    "status_code": 404
  }
}