Skip to content

댓글 조회 ​

MCP 도구
get_commentGet Comment
요청 제한
Default
API 권한
comments:read

댓글을 조회합니다.

예시 ​

bash
curl 'https://api.youvico.com/api/comments/2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6' \
  -H 'Authorization: Bearer YOUR_API_KEY'
json
{
  "data": {
    "id": "2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6",
    "content": "Please tighten the logo safe area.",
    "anchor": 12000,
    "duration": 3000,
    "createdAt": "2026-04-10 08:00:00.482913",
    "updatedAt": "2026-04-10 08:05:12.118204",
    "deletedAt": null,
    "attachments": [
      {
        "id": "CA1234567890ABCD",
        "name": "review-note.pdf",
        "mimeType": "application/pdf",
        "size": 1250000
      }
    ],
    "parent": null,
    "author": {
      "id": "f6035d1a-29df-4d80-8d72-f1bbdddfb6ff",
      "name": "Jin Seo",
      "avatarUrl": "https://cdn.youvico.com/users/f6035d1a-29df-4d80-8d72-f1bbdddfb6ff/A1b2C3d4E5f6G7h8I9j0K1l2M3n4O5p6.avif"
    },
    "project": {
      "id": "bdbff5de-96d7-468f-9db0-85fe28bd6b62",
      "name": "Launch Campaign"
    },
    "file": {
      "id": "FX1234567890ABCD",
      "name": "launch-cut.mp4"
    }
  }
}

요청 ​

경로 ​

idstringrequired
댓글 ID

응답 ​

200 OK를 반환합니다.

dataobject
댓글
data.idstring
댓글 ID

Example: 2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6

data.contentstring
댓글 내용

Example: Please tighten the logo safe area.

data.anchornumber?
동영상은 밀리초 단위 타임스탬프, 문서는 1부터 시작하는 페이지 번호

Example: 12000

data.durationnumber?
anchor와 같은 단위의 댓글 구간 길이

Example: 3000

data.createdAtstring
댓글 생성 일시

Example: 2026-04-10 08:00:00.482913

data.updatedAtstring
댓글 마지막 수정 일시

Example: 2026-04-10 08:05:12.118204

data.deletedAtstring?
댓글 삭제 일시. 항상 null

Example: null

data.attachmentsarray
댓글 첨부파일
data.attachments[].idstring
댓글 첨부파일 ID

Example: CA1234567890ABCD

data.attachments[].namestring
첨부파일 이름

Example: review-note.pdf

data.attachments[].mimeTypestring?
첨부파일 MIME 타입

Example: application/pdf

data.attachments[].sizenumber
첨부파일 크기(바이트)

Example: 1250000

data.parentobject?
상위 댓글

Example: null

data.parent.idstring
상위 댓글 ID
data.authorobject?
댓글 작성자
data.author.idstring
작성자 사용자 ID

Example: f6035d1a-29df-4d80-8d72-f1bbdddfb6ff

data.author.namestring
작성자 표시 이름

Example: Jin Seo

data.author.avatarUrlstring?
작성자 아바타 URL

Example: https://cdn.youvico.com/users/f6035d1a-29df-4d80-8d72-f1bbdddfb6ff/A1b2C3d4E5f6G7h8I9j0K1l2M3n4O5p6.avif

data.projectobject
프로젝트
data.project.idstring
프로젝트 ID

Example: bdbff5de-96d7-468f-9db0-85fe28bd6b62

data.project.namestring
프로젝트 이름

Example: Launch Campaign

data.fileobject?
파일. 프로젝트 댓글이면 null
data.file.idstring
파일 ID

Example: FX1234567890ABCD

data.file.namestring
파일 이름

Example: launch-cut.mp4