action microsoft_reply_to_channel_message { label: "Reply to channel message" description: "Reply to a message in a Microsoft Teams channel thread." provider: microsoft method: POST path: "/v1.0/teams/{team_id}/channels/{channel_id}/messages/{message_id}/replies" scopes: ["ChannelMessage.Send"] input: @json { { "type": "object", "required": ["team_id", "channel_id", "message_id", "body"], "additionalProperties": false, "properties": { "team_id": { "type": "string", "description": "Team id." }, "channel_id": { "type": "string", "description": "Channel id." }, "message_id": { "type": "string", "description": "Id of the root message to reply to." }, "body": { "type": "object", "required": ["content"], "properties": { "content": { "type": "string", "description": "Reply content." }, "contentType": { "type": "string", "enum": ["text", "html"] } } } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "createdDateTime": { "type": "string" }, "webUrl": { "type": "string" } } } } }