Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Remove Microsoft Teams channel message reaction

Remove a reaction from a channel message.

Agent markdown

channel_messages.reactions.remove · Microsoft Teams · v1

Details

Risk
Write
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=true, openWorld=true

Scopes

  • ChannelMessage.Send

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128
channel_idstringYesminLength 1; maxLength 128
message_idstringYesminLength 1; maxLength 128
reactionstringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "channel_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "message_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "reaction": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "team_id",
    "channel_id",
    "message_id",
    "reaction"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}