Slack
SLACK_REMOVE_A_STAR_FROM_AN_ITEM
Removes a star from a previously starred Slack item (message, file, file comment, channel, group, or DM), requiring identification via `file`, `file_comment`, `channel` (for channel/group/DM), or both `channel` and `timestamp` (for a message).
Remote slack
Other tools also called SLACK_REMOVE_A_STAR_FROM_AN_ITEM?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "ID of the file to unstar.\nExample: \"F1234567890\""
},
"channel": {
"type": "string",
"description": "ID of the item (channel, private group, DM) or the message's channel (if `timestamp` is also provided).\nExamples:\n \"C1234567890\"\n \"G0987654321\""
},
"timestamp": {
"type": "string",
"description": "Timestamp of the message to unstar; requires `channel`.\nExamples:\n \"1629883200.000100\"\n \"1503435956.000247\""
},
"file_comment": {
"type": "string",
"description": "ID of the file comment to unstar.\nExample: \"Fc1234567890\""
}
}
}