Slack
SLACKBOT_DELETES_A_MESSAGE_FROM_A_CHAT
Deletes a message, identified by its channel ID and timestamp, from a Slack channel, private group, or direct message conversation; the authenticated user or bot must be the original poster.
Remote slackbot
Other tools also called SLACKBOT_DELETES_A_MESSAGE_FROM_A_CHAT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ts": {
"type": "string",
"title": "Ts",
"examples": [
"1234567890.123456",
"1609459200.000000"
],
"description": "Timestamp of the message to be deleted. Must be the exact Slack message timestamp string with fractional precision, e.g., '1234567890.123456'."
},
"as_user": {
"type": "boolean",
"title": "As User",
"description": "If `True`, deletes the message as the authenticated user using the `chat:write:user` scope. Bot users are considered authenticated users. If `False` or omitted, the message is deleted using the `chat:write:bot` scope."
},
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"G0987654321",
"D060123ABC"
],
"description": "The ID of the channel, private group, or direct message conversation containing the message to be deleted."
}
}
}