GET Friends

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

Get a list of friends

Headers:

URL Parameters:

Other Variables:

Response:

type FriendsResponse = {
    friends: {
        activePlatform: string | null;
        displayGroup: string;
        game_name: string;
        game_tag: string;
        group: string;
        /** Milliseconds since epoch */
        last_online_ts: number | null;
        name: string;
        note: string;
        pid: string;
        /** Player UUID */
        puuid: string;
        region: string;
    }[];
};