GET/comments/{commentId}/reactions.json
Get Reactions on a specific Comment
Reactions are only available to users who have the new dashboard enabled via the beta program. In order to do use reactions you need to first enable this.
Returns all reactions on the given comment.
Path Params
- Name
commentId
- Type
- string
- required
- Description
Query Params
- Name
reactionType
- Type
- string
- required
- Description
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 Response
200 Response
application/json
{
"STATUS": "OK",
"reactions": [
{
"avatarURL": "test.png",
"firstName": "Jose",
"fullName": "Holly Bloggs",
"reactionType": "frown",
"postedOn": "2018-11-12T08:46:22Z",
"companyName": "Teamwork",
"id": "1",
"companyId": "1",
"lastName": "Holly"
}
]
}