Skip to content

정보 가져오기 Default

GET/comments/{id}Copied!

댓글 정보를 조회해요.

접근 가능한 사용자

사용자비로그인 사용자

Request

Path

idstringrequired
댓글 ID

Response

Returns 200 OK.

idstring
댓글 ID
contentstring
댓글 내용
anchornumber?
댓글이 연결된 재생 위치
durationnumber?
댓글이 연결된 구간 길이
drawingboolean
드로잉 데이터 존재 여부
createdAtstring
댓글 생성 시각
updatedAtstring
댓글 수정 시각
deletedAtstring?
댓글 삭제 시각
parentobject
부모 댓글 정보
parent.idstring?
부모 댓글 ID
authorobject?
작성자 정보
author.idstring
작성자 ID
author.namestring
작성자 이름
author.avatarstring?
작성자 프로필 이미지 경로
projectobject
프로젝트 정보
project.idstring
프로젝트 ID
project.namestring
프로젝트 이름
fileobject
파일 정보
file.idstring
파일 ID
file.namestring
파일 이름

Example

bash
curl 'https://api.youvico.com/comments/6ba7b810-9dad-11d1-80b4-00c04fd430c8' \
  -H 'Authorization: Bearer xoau.aB3xK9p2QwR7sT4uV1nM8oP5qL6rN0yZ7eF2gH4jK...'
json
{
  "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "content": "확인 부탁해요.",
  "anchor": 12.5,
  "duration": null,
  "drawing": false,
  "createdAt": "2026-04-26 09:15:00.000000",
  "updatedAt": "2026-04-26 09:15:00.000000",
  "deletedAt": null,
  "parent": { "id": null },
  "author": { "id": "123e4567-e89b-12d3-a456-426614174000", "name": "김유비", "avatar": null },
  "project": { "id": "7ca7b810-9dad-11d1-80b4-00c04fd430c8", "name": "리브랜딩 캠페인" },
  "file": { "id": "8da7b810-9dad-11d1-80b4-00c04fd430c8", "name": "시안.mp4" }
}