Skip to main content
FuseFuse
IntegrationsSlackActions

Remove Slack reaction

Remove a reaction from a Slack message.

Agent markdown

reactions.remove · Slack · v1

Details

Risk
Write
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=true, openWorld=true

Scopes

  • reactions:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
channel_idstringYesminLength 1; maxLength 64
timestampstringYesminLength 1; maxLength 64
namestringYesminLength 1

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channel_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "timestamp": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "name": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "channel_id",
    "timestamp",
    "name"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}