Slack
SLACK_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 slack
Other tools also called SLACK_UNPIN_ITEM_FROM_CHANNEL?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"channel": {
"type": "string",
"description": "The ID of the channel where the message is pinned (e.g., a public channel, private channel, or direct message).\nExamples:\n \"C1234567890\"\n \"G0987654321\""
},
"timestamp": {
"type": "string",
"description": "Timestamp of the message to unpin. This is required to identify the specific message to be removed from the channel's pinned items.\nExamples:\n \"1625640000.000100\"\n \"1700000000.123456\""
}
}
}