Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Update Microsoft Teams channel message

Update a channel message authored by the connected user.

Agent markdown

channel_messages.update · 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.ReadWrite

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128
channel_idstringYesminLength 1; maxLength 128
message_idstringYesminLength 1; maxLength 128
body_contentstringYesminLength 1; maxLength 28000
body_content_typestringYesenum text | html

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
body_contentstringYes
body_content_typestringYesenum text | html
from_user_idstringNo
created_atstringNo
web_urlstringNo
reply_to_idstringNo

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
    },
    "body_content": {
      "type": "string",
      "minLength": 1,
      "maxLength": 28000
    },
    "body_content_type": {
      "type": "string",
      "enum": [
        "text",
        "html"
      ]
    }
  },
  "required": [
    "team_id",
    "channel_id",
    "message_id",
    "body_content",
    "body_content_type"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "body_content": {
      "type": "string"
    },
    "body_content_type": {
      "type": "string",
      "enum": [
        "text",
        "html"
      ]
    },
    "from_user_id": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "web_url": {
      "type": "string"
    },
    "reply_to_id": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "body_content",
    "body_content_type"
  ]
}