POST Send Chat
https://127.0.0.1:{port}/chat/v6/messages Send a message to the specified group
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
Body
type SendChatBody = {
/** The conversation ID of the group to send the message to */
cid: string;
message: string;
/** Use `chat` for whispers, `groupchat` for group messages, and `system` for system messages */
type: "groupchat" | "chat" | "system";
}; {
"cid": "aestas",
"message": "cruentus",
"type": "chat"
} Response
type SendChatResponse = {
messages: {
body: string;
cid: string;
game_name: string;
game_tag: string;
id: string;
mid: string;
name: string;
pid: string;
/** Player UUID */
puuid: string;
read: boolean;
region: string;
/** Time in milliseconds since epoch */
time: string;
type: "chat" | "groupchat";
}[];
}; {
"messages": [
{
"body": "tam",
"cid": "vicissitudo",
"game_name": "magnam",
"game_tag": "caveo",
"id": "adulescens",
"mid": "officiis",
"name": "Dean Boyer",
"pid": "utor",
"puuid": "d52E4b9A-d433-a4D7-1ACA-E3796b4CAf06",
"read": true,
"region": "claustrum",
"time": null,
"type": "chat"
}
]
}