Skip to content

답글 목록 Tier 4

GET/api/comments/:id/repliesCopied!

댓글의 직접 답글을 반환합니다. 커서 페이지네이션을 사용합니다.

상위 댓글이 삭제된 경우에도 이 엔드포인트는 정상적으로 동작합니다.

요청

Path

idstringrequired
댓글 ID

Query

nextstring
다음 페이지 커서
prevstring
이전 페이지 커서

INFO

nextprev를 모두 지정하지 않으면 가장 최근에 작성된 답글 25개를 반환합니다.

응답

200 OK를 반환합니다.

dataarray
답글 목록
data[].idstring
답글 ID

Example: 84202e58-bf8c-471d-af07-0ab0f5b0f82b

data[].contentstring
답글 내용

Example: Updated and re-exported.

data[].startTimenumber?
시작 타임스탬프. 영상/YouTube는 ms, PDF/Image는 페이지 번호

Example: null

data[].endTimenumber?
종료 타임스탬프. 영상/YouTube는 ms, PDF/Image는 페이지 번호

Example: null

data[].drawingboolean
드로잉 첨부 여부

Example: false

data[].createdAtstring
답글 생성일

Example: 2026-04-10 08:10:00.000000

data[].updatedAtstring
답글 수정일

Example: 2026-04-10 08:11:00.000000

data[].versionobject
상위 버전
data[].version.idstring
상위 버전 ID

Example: 8fe89e5a-1d8f-4302-8437-fb0390ecf8eb

data[].authorobject?
댓글 작성자
data[].author.idstring
작성자 사용자 ID

Example: c5c1c5d7-54f0-4d88-b78d-8f3c3a0d9bea

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

Example: Haneul Park

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

Example: null

pageobject
페이지네이션 커서
page.nextstring?
다음 페이지 커서

Example: null

page.prevstring?
이전 페이지 커서

Example: MjAyNi0wNC0xMFQwODoxMDowMC4wMDBa

예시

bash
curl 'https://api.youvico.com/api/comments/2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6/replies' \
  -H 'Authorization: Bearer YOUR_API_KEY'
json
{
  "data": [
    {
      "id": "84202e58-bf8c-471d-af07-0ab0f5b0f82b",
      "content": "Updated and re-exported.",
      "startTime": null,
      "endTime": null,
      "drawing": false,
      "createdAt": "2026-04-10 08:10:00.000000",
      "updatedAt": "2026-04-10 08:11:00.000000",
      "version": {
        "id": "8fe89e5a-1d8f-4302-8437-fb0390ecf8eb"
      },
      "author": {
        "id": "c5c1c5d7-54f0-4d88-b78d-8f3c3a0d9bea",
        "name": "Haneul Park",
        "avatarUrl": null
      }
    }
  ],
  "page": {
    "next": null,
    "prev": "MjAyNi0wNC0xMFQwODoxMDowMC4wMDBa"
  }
}