Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Latest commit

 

History

History
32 lines (27 loc) · 689 Bytes

File metadata and controls

32 lines (27 loc) · 689 Bytes

Command: message_replies

Request:

{
  "cmd": "message_replies",
  "channel": "<channel_name>",
  "id": "<message_id>",
  "limit": <optional_limit>
}
  • channel: Channel name.
  • id: Message ID.
  • limit: (Optional) Number of replies to fetch (default 50).

Response:

  • On success:
{
  "cmd": "message_replies",
  "channel": "<channel_name>",
  "message_id": "<message_id>",
  "replies": [ ...array of message objects... ]
}

Notes:

  • User must be authenticated and have access to the channel.

See implementation: handlers/message.py (search for case "message_replies":).