Reply in a channel thread
teams_reply_channel_messageReply to a Microsoft Teams channel message, adding a threaded reply under the parent message.
Instructions
Reply to an existing top-level channel message (adds to its thread).
Args:
team_id (string): the team ID
channel_id (string): the channel ID
message_id (string): the parent message ID (from teams_list_channel_messages)
content (string): the reply body (max 28000 chars)
content_type ('text' | 'html'): body format (default text)
Returns: JSON { id, webUrl } of the created reply.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Message text. Plain text by default; set content_type='html' to send HTML. | |
| team_id | Yes | The Microsoft Teams team (group) ID. Get it from teams_list_joined_teams. | |
| channel_id | Yes | The channel ID (e.g. '19:...@thread.tacv2'). Get it from teams_list_channels. | |
| message_id | Yes | Parent message ID to reply under | |
| content_type | No | Body content type: 'text' (plain) or 'html' | text |