GET Party Chat Info
https://127.0.0.1:{port}/chat/v6/conversations/ares-parties Get information about the party chat
Headers
-
Authorization: Basic {base64 encoded "riot:{lockfile password}"}
URL Parameters
-
{port}The port can be found from the lockfile (located at
%LocalAppData%\Riot Games\Riot Client\Config\lockfile) when the game is running. The file has the formatname:pid:port:password:protocol
Other Variables
-
lockfile passwordThe password can be found from the lockfile (located at
%LocalAppData%\Riot Games\Riot Client\Config\lockfile) when the game is running. The file has the formatname:pid:port:password:protocol
Response
type PartyChatInfoResponse = {
conversations: {
cid: string;
direct_messages: boolean;
global_readership: boolean;
message_history: boolean;
mid: string;
muted: boolean;
mutedRestriction: boolean;
type: "groupchat" | "chat";
uiState: {
changedSinceHidden: boolean;
hidden: boolean;
};
unread_count: number;
}[];
}; {
"conversations": [
{
"cid": "perferendis",
"direct_messages": false,
"global_readership": false,
"message_history": true,
"mid": "aiunt",
"muted": false,
"mutedRestriction": false,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 8658586614791590
},
{
"cid": "bestia",
"direct_messages": false,
"global_readership": true,
"message_history": true,
"mid": "consequatur",
"muted": false,
"mutedRestriction": true,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": true
},
"unread_count": 6894847072541948
},
{
"cid": "stillicidium",
"direct_messages": true,
"global_readership": true,
"message_history": true,
"mid": "volaticus",
"muted": false,
"mutedRestriction": false,
"type": "chat",
"uiState": {
"changedSinceHidden": true,
"hidden": false
},
"unread_count": 6074192464020958
},
{
"cid": "spargo",
"direct_messages": false,
"global_readership": true,
"message_history": true,
"mid": "audio",
"muted": false,
"mutedRestriction": false,
"type": "groupchat",
"uiState": {
"changedSinceHidden": false,
"hidden": false
},
"unread_count": 8358194189895441
},
{
"cid": "vulariter",
"direct_messages": false,
"global_readership": false,
"message_history": false,
"mid": "curso",
"muted": true,
"mutedRestriction": true,
"type": "chat",
"uiState": {
"changedSinceHidden": true,
"hidden": true
},
"unread_count": 8649950982293056
}
]
}