Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Remove Microsoft Teams chat message reaction

Remove a reaction from a chat message.

Agent markdown

chat_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

  • ChatMessage.Send

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
chat_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": {
    "chat_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "message_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "reaction": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "chat_id",
    "message_id",
    "reaction"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}