Skip to content

Update Comment Tier 4

PATCH/api/comments/:idCopied!

Updates a comment.

Example

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." }'

Request

Path

idstringrequired
Comment ID

Body

contentstringrequired

1-1000 characters

Comment text

Response

Returns 204 No Content.