Slack
SLACKBOT_DELETE_A_SCHEDULED_MESSAGE_IN_A_CHAT
Deletes a pending, unsent scheduled message from the specified Slack channel, identified by its `scheduled_message_id`.
Remote slackbot
Other tools also called SLACKBOT_DELETE_A_SCHEDULED_MESSAGE_IN_A_CHAT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"as_user": {
"type": "boolean",
"title": "As User",
"examples": [
"true",
"false"
],
"description": "Pass `true` to delete the message as the authenticated user (bots are considered authed users here, uses `chat:write:user` scope); if `false` or omitted, deletes as a bot (uses `chat:write:bot` scope)."
},
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"G0123456789",
"D0123456789"
],
"description": "ID of the channel, private group, or DM conversation where the message is scheduled."
},
"scheduled_message_id": {
"type": "string",
"title": "Scheduled Message Id",
"examples": [
"Q123ABCDEF456",
"SM0123456789"
],
"description": "Unique ID (`scheduled_message_id`) of the message to be deleted; obtained from `chat.scheduleMessage` response."
}
}
}