Tickets API
POST/api/v1/tickets/{id}/comments/{commentId}/reactions
Product availabilityAlgaPSAAlgaDesk

Toggle a comment reaction

Adds or removes the given emoji reaction on a comment for the authenticated user. Returns { added: boolean } indicating whether the reaction was added (true) or removed (false).

RBAC · ticket

Path parameters

idstring <uuid>Required
Ticket UUID.
commentIdstring <uuid>Required
Comment UUID.

Request body

Content type: application/json · schema WorkV1TicketReactionBody

emojistringRequired
Emoji to toggle on the comment.

Response body

Success response 200 · schema WorkV1ApiSuccess

dataanyOfRequired
anyOf (option 1)object
anyOf (option 2)array of object
itemsobject
metaobject

Response codes

200
Reaction toggled.
400
Validation or request parsing failure.
401
API key missing/invalid.
403
RBAC denied for ticket resource action.
404
Ticket or sub-resource not found.
500
Unexpected controller/service failure.