GET Chat Participants

https://127.0.0.1:{port}/chat/v5/participants?cid={cid}

Get information about the participants of all active conversations or a specific conversation if a cid is provided

Headers:

URL Parameters:

Query Parameters:

Other Variables:

Response:

type ChatParticipantsResponse = {
    participants: {
        activePlatform: null;
        cid: string;
        game_name: string;
        game_tag: string;
        muted: boolean;
        name: string;
        pid: string;
        /** Player UUID */
        puuid: string;
        region: string;
    }[];
};