list_message_replies
Fetch replies to a Microsoft Teams channel message (thread), newest first, with pagination and optional full body/raw payloads.
Instructions
List replies to a channel message (the thread under a root post), newest first.
Args: team_id: Graph team id. channel_id: Graph channel id. message_id: Graph id of the root channel message (from list_channel_messages). limit: 1-50 (Graph caps reply pages at 50). Default 25. page_token: Continuation token from a previous result. include_body: When True, include each reply's full body and any attachment card payloads. Default False (snippet only). include_raw: Include the raw Graph payload under "raw" on each item.
Returns: {"items": [trimmed_chat_message, ...], "next_page_token": str | None}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| team_id | Yes | ||
| channel_id | Yes | ||
| message_id | Yes | ||
| page_token | No | ||
| include_raw | No | ||
| include_body | No |