Slack
SLACKBOT_UNPIN_ITEM_FROM_CHANNEL
Unpins a message, identified by its timestamp, from a specified channel if the message is currently pinned there; this operation is destructive.
Remote slackbot
Other tools also called SLACKBOT_UNPIN_ITEM_FROM_CHANNEL?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"G0987654321"
],
"description": "The ID of the channel where the message is pinned (e.g., a public channel, private channel, or direct message)."
},
"timestamp": {
"type": "string",
"title": "Timestamp",
"examples": [
"1625640000.000100",
"1700000000.123456"
],
"description": "Timestamp of the message to unpin. This is required to identify the specific message to be removed from the channel's pinned items."
}
}
}