POST Send Friend Request

https://127.0.0.1:{port}/chat/v4/friendrequests

Sends a friend request to a player. Can be used in conjunction with Friend Requests and Remove Friend Request to determine a player's PUUID from their game name.

Headers

URL Parameters

Other Variables

Body

type SendFriendRequestBody = {
    game_name: string;
    game_tag: string;
};

Response

type SendFriendRequestResponse = {
    /** Empty array */
    requests: any[];
};