Skip to content

コメント更新 Tier 4

PATCH/api/comments/:idCopied!

コメントを更新します。

ts
await client.comments.update("2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6", {
  content: "Looks great, approved after final export.",
});
bash
youvico comment update \
  --id 2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6 \
  --content "Looks great, approved after final export."
bash
curl -X PATCH 'https://api.youvico.com/api/comments/2fb4e60b-0d9a-46f3-a4dc-cb9fe8ad9be6' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{ "content": "Looks great, approved after final export." }'

リクエスト

パス

idstringrequired
コメントID

ボディ

contentstringrequired

1-1000 characters

コメント本文

レスポンス

204 No Content を返します。