List comments
GET
/manager/{mediaSourceId}/comment
Get all comments for a media source
Authorizations
Parameters
Path Parameters
mediaSourceId*
Type
Requiredstring
Format
"uuid"Responses
List of comments
application/json
JSON
{
"success": true,
"data": {
"comments": [
{
"id": "string",
"userId": "string",
"content": "string",
"createdAt": "string",
"updatedAt": "string",
"parentCommentId": "string",
"deletedAt": "string",
"timestampSeconds": 0,
"user": {
"id": "string",
"displayName": "string",
"avatarUrl": "string"
},
"attachments": [
{
"id": "string",
"attachmentType": "string",
"presignedUrl": "string",
"annotation": {
"strokes": [
{
"type": "string",
"points": [
{
"x": 0,
"y": 0
}
],
"color": "string"
}
]
}
}
],
"reactions": {
"eyes": {
"count": 0,
"users": [
{
"id": "string",
"displayName": "string",
"avatarUrl": "string"
}
]
},
"star": {
"count": 0,
"users": [
{
"id": "string",
"displayName": "string",
"avatarUrl": "string"
}
]
},
"check": {
"count": 0,
"users": [
{
"id": "string",
"displayName": "string",
"avatarUrl": "string"
}
]
}
}
}
]
}
}