Create attachment
POST
/manager/{mediaSourceId}/comment/attachment
Upload an attachment to a comment
Authorizations
Parameters
Path Parameters
mediaSourceId*
Type
Requiredstring
Format
"uuid"Request Body
multipart/form-data
comment_id
string
Required
Format
"uuid"file
string
attachment_type
string
timestamp_seconds
string
Responses
Created attachment
application/json
{
"success": true,
"data": {
"attachment": {
"id": "string",
"attachmentType": "string",
"presignedUrl": "string",
"commentId": "string",
"originalName": "string",
"size": 0,
"contentType": "string",
"createdAt": "string",
"annotation": {
"strokes": [
{
"type": "string",
"points": [
{
"x": 0,
"y": 0
}
],
"color": "string"
}
]
}
},
"uploadUrl": "string"
}
}