Skip to content

댓글 첨부파일 업로드 취소 Tier 4

POST/api/comment-attachments/:id/upload.cancelCopied!

진행 중인 댓글 첨부파일 멀티파트 업로드를 취소합니다.

업로드를 시작한 사용자만 취소할 수 있습니다.

CLI에서 직접 호출할 수 없는 엔드포인트

CLI는 댓글 첨부파일 업로드 명령을 직접 제공하지 않습니다. SDK 헬퍼를 사용하거나 HTTP 엔드포인트를 직접 호출하세요.

예시

ts
await client.commentAttachments.cancelUpload("CA1234567890ABCD");
bash
curl -X POST 'https://api.youvico.com/api/comment-attachments/CA1234567890ABCD/upload.cancel' \
  -H 'Authorization: Bearer YOUR_API_KEY'

요청

경로

idstringrequired
댓글 첨부파일 ID

응답

204 No Content를 반환합니다.