IntegrationsMicrosoft teamsActions
Remove Microsoft Teams chat message reaction
Remove a reaction from a chat message.
chat_messages.reactions.remove · Microsoft Teams · v1
Details
Scopes
ChatMessage.Send
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
chat_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": {
"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": {}
}