Appearance
Reactions
Emoji reactions on comments.
Add Reaction
POST /api/v1/comments/:commentId/reactionsbash
curl -X POST https://pulse.hire.rest/api/v1/comments/comment_001/reactions \
-H "Authorization: Bearer sk_your_secret_key" \
-H "Content-Type: application/json" \
-d '{
"userId": "user-2",
"emoji": "👍"
}'| Field | Type | Required | Description |
|---|---|---|---|
userId | string | Yes | User adding the reaction |
emoji | string | Yes | Emoji character |
Response 201:
json
{
"reaction": {
"id": "reaction_xyz",
"targetId": "comment_001",
"targetType": "comment",
"userId": "user-2",
"emoji": "👍",
"createdAt": "2026-03-10T14:20:00.000Z"
}
}Remove Reaction
DELETE /api/v1/reactions/:reactionIdbash
curl -X DELETE https://pulse.hire.rest/api/v1/reactions/reaction_xyz \
-H "Authorization: Bearer sk_your_secret_key"Response:
json
{ "deleted": true }