Try our new Setup Skill to automatically integrate Hyperspell into your project
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": {}
}Add an emoji reaction to a message on a connected integration.
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": {}
}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.
Add an emoji reaction to a message.
Integration provider (e.g., slack)
reddit, notion, slack, google_calendar, google_mail, box, dropbox, google_drive, github, vault, web_crawler, trace Channel ID containing the message
Message timestamp to react to
Emoji name without colons (e.g., thumbsup)
Connection ID. If omitted, auto-resolved from provider + user.
Was this page helpful?