Slack
SLACKBOT_LIST_USER_REACTIONS
Lists all reactions added by a specific user to messages, files, or file comments in Slack, useful for engagement analysis when the item content itself is not required.
Remote slackbot
Other tools also called SLACKBOT_LIST_USER_REACTIONS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"full": {
"type": "boolean",
"title": "Full",
"description": "If true, return the complete reaction list, which may include reactions to deleted items."
},
"page": {
"type": "integer",
"title": "Page",
"examples": [
"1"
],
"description": "Page number of results to return."
},
"user": {
"type": "string",
"title": "User",
"examples": [
"U012A3CDEFG"
],
"description": "Reactions made by this user. Defaults to the authed user."
},
"count": {
"type": "integer",
"title": "Count",
"examples": [
"20"
],
"description": "Number of items to return per page."
},
"limit": {
"type": "integer",
"title": "Limit",
"examples": [
"100"
],
"description": "Maximum number of items to return; fewer items may be returned. Use with cursor-based pagination."
},
"cursor": {
"type": "string",
"title": "Cursor",
"examples": [
"dXNlcjpVMDYxTkZ0NUI="
],
"description": "Pagination cursor. Set to `next_cursor` from a previous response's `response_metadata`. See Slack API pagination documentation for details."
}
}
}