Skip Navigation Links

Task Comment Reactions

Update task comment reactionexperimental

Requires authentication via bearer.

Updates the type of the actor's own reaction on a task comment. Only the reaction owner can update their reaction. Only the type field can be changed.

Path Params

reaction_id stringrequired

Request Body

type stringrequired

Response Body

200 OK

Error Codes

  • FEATURE_DISABLED
  • REACTION_NOT_FOUND
  • TASK_COMMENT_NOT_FOUND
  • TASK_NOT_FOUND

Delete task comment reactionexperimental

Requires authentication via bearer.

Removes the actor's own reaction from a task comment. Only the reaction owner can delete their reaction. The operation cannot be undone.

Path Params

reaction_id stringrequired

Response Body

204 No Content

Error Codes

  • FEATURE_DISABLED
  • REACTION_NOT_FOUND
  • TASK_COMMENT_NOT_FOUND
  • TASK_NOT_FOUND

Get paginated reactions to task commentexperimental

Requires authentication via bearer.

Returns a paginated list of reactions on a task comment. The actor must have access to the task and the comment must not be deleted.

Path Params

comment_id stringrequired

Query Params

embed string[]

Options for embedding additional data into task comment reaction responses:

  • USER: Includes the reacting user's profile in the user field of each reaction.
types string[]
sort string[]

Sort options for task comment reactions. Each option has ascending (_ASC) and descending (_DESC) variants:

  • TYPE: Sort by reaction type in natural alphabetical order (CLAPPING, HAPPY, HEART, INSPIRING, SAD, THUMBS_UP).
page_cursor string

A cursor pointing to the first item to be contained in the response array. Refer to our general "pagination" concept for more information.

page_limit integer

The maximum number of items to be contained in the response array. Refer to our general "pagination" concept for more information.

Response Body

200 OK

Error Codes

  • FEATURE_DISABLED
  • TASK_COMMENT_NOT_FOUND
  • TASK_NOT_FOUND
  • DELETED_TASK_COMMENT
  • REACTION_TYPES_LIMIT_EXCEEDED
  • VALIDATION_ERROR

Create new task comment reactionexperimental

Requires authentication via bearer.

Adds a reaction to a task comment. The reacting user is the authenticated actor.

Constraint: Each user can have at most one reaction per comment. If the actor has already reacted to the comment, USER_REACTION_ALREADY_EXISTS is returned. Use the update endpoint to change an existing reaction instead.

Path Params

comment_id stringrequired

Request Body

id string
type stringrequired

Response Body

201 Created

Error Codes

  • DUPLICATE_ID
  • FEATURE_DISABLED
  • TASK_COMMENT_NOT_FOUND
  • TASK_NOT_FOUND
  • USER_REACTION_ALREADY_EXISTS