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 password
The 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";
};
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";
}[];
};