IntegrationsMicrosoft teamsActions
Delete Microsoft Teams chat message
Delete a chat message authored by the connected user.
chat_messages.delete · Microsoft Teams · v1
Details
Scopes
Chat.ReadWrite
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 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 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"
]
}