Skip to main content
POST
/
actions
/
add_reaction
Add a reaction
curl --request POST \
  --url https://api.hyperspell.com/actions/add_reaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "reddit",
  "channel": "<string>",
  "timestamp": "<string>",
  "name": "<string>",
  "connection": "<string>"
}
'
{
  "success": true,
  "error": "<string>",
  "provider_response": {}
}

Authorizations

Authorization
string
header
required

API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.

Body

application/json

Add an emoji reaction to a message.

provider
enum<string>
required

Integration provider (e.g., slack)

Available options:
reddit,
notion,
slack,
google_calendar,
google_mail,
box,
dropbox,
google_drive,
github,
vault,
web_crawler,
trace
channel
string
required

Channel ID containing the message

timestamp
string
required

Message timestamp to react to

name
string
required

Emoji name without colons (e.g., thumbsup)

connection
string | null

Connection ID. If omitted, auto-resolved from provider + user.

Response

Successful Response

Result from executing an integration action.

success
boolean
required
error
string | null
provider_response
Provider Response · object