Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 575 Bytes

File metadata and controls

40 lines (30 loc) · 575 Bytes

Unfriend

This API allows you to unfriend a friend

If the id is of user who is not your friend, an error will be returned.

Request Method

DELETE

Endpoint

https://api.vrchat.cloud/api/1/auth/user/friends/:id

id - the id of the user to unfriend

Requires Authentication

Yes

Returns

Success/Error:

on success:

{
    "success": {
            "message": "Friendship destroyed", 
            "status_code": 200
        }
}

on error

{
    "error": {
        "message": "These users are not friends", 
        "status_code": 400
    }
}