Skip to content

Update Tag Tier 4

PATCH/api/files/:id/tagCopied!

Updates a file review tag.

Example

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

Request

Path

idstringrequired
File ID

Body

tagstringrequired
New review tag

Possible values: IN_PROGRESSNEED_REVIEWNEED_EDITON_HOLDAPPROVEDREJECTEDCLOSED

Response

Returns 204 No Content.