IntegrationsMicrosoft teamsActions
Reply to Microsoft Teams channel message
Reply to a channel message as the connected user.
channel_messages.reply · Microsoft Teams · v1
Details
Scopes
ChannelMessage.Send
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
channel_id | string | Yes | minLength 1; maxLength 128 |
message_id | string | Yes | minLength 1; maxLength 128 |
body_content | string | Yes | minLength 1; maxLength 28000 |
body_content_type | string | Yes | enum text | html |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
body_content | string | Yes | — |
body_content_type | string | Yes | enum text | html |
from_user_id | string | No | — |
created_at | string | No | — |
web_url | string | No | — |
reply_to_id | string | No | — |
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"
]
}