Skip to content

태그 업데이트 Tier 4

PATCH/api/files/:id/tagCopied!

파일의 리뷰 태그를 업데이트합니다.

예시

ts
await client.files.updateTag("FX1234567890ABCD", {
  tag: "APPROVED",
});
bash
youvico file update.tag \
  --id FX1234567890ABCD \
  --tag APPROVED
bash
curl -X PATCH 'https://api.youvico.com/api/files/FX1234567890ABCD/tag' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{ "tag": "APPROVED" }'

요청

경로

idstringrequired
파일 ID

본문

tagstringrequired
새 리뷰 태그

Possible values: IN_PROGRESSNEED_REVIEWNEED_EDITON_HOLDAPPROVEDREJECTEDCLOSED

응답

204 No Content를 반환합니다.