Messaging
Reactions
Add and remove emoji reactions on messages.
Add a reaction
POST
/modules/messaging/messages/{message_id}/reactions
Add a reaction to a message.
curl
curl -X POST https://api.saasignal.saastemly.com/modules/messaging/messages/{message_id}/reactions \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"participant_id":"...","emoji":"..."}'
json — 201 Created
{ "status": "ok" }
Path param
Type
Description
message_id requiredstring
Body field
Type
Description
participant_id requiredstring
emoji requiredstring
max 32 chars
Error responses
401 Unauthorized
402 Insufficient tokens
409 Conflict
429 Rate limited
Remove a reaction
DELETE
/modules/messaging/messages/{message_id}/reactions/{reaction_id}
Remove a reaction from a message.
curl
curl -X DELETE https://api.saasignal.saastemly.com/modules/messaging/messages/{message_id}/reactions/{reaction_id} \
-H "Authorization: Bearer sk_live_..."
json — 200 OK
{ "status": "ok" }
Path param
Type
Description
message_id requiredstring
reaction_id requiredstring
Error responses
401 Unauthorized
402 Insufficient tokens
404 Not found
429 Rate limited