Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Delete Microsoft Teams chat message

Delete a chat message authored by the connected user.

Agent markdown

chat_messages.delete · Microsoft Teams · v1

Details

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

Scopes

  • Chat.ReadWrite

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
chat_idstringYesminLength 1; maxLength 128
message_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "chat_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "message_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "chat_id",
    "message_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "id"
  ]
}