IntegrationsMicrosoft teamsActions
Add Microsoft Teams channel message reaction
Add a reaction to a channel message.
channel_messages.reactions.add · 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 |
reaction | string | Yes | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties 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": {}
}