IntegrationsSlackActions
Add Slack reaction
Add a reaction to a Slack message.
reactions.add · Slack · v1
Details
Scopes
reactions:write
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
channel_id | string | Yes | minLength 1; maxLength 64 |
timestamp | string | Yes | minLength 1; maxLength 64 |
name | string | Yes | minLength 1 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties 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": {}
}