Skip to content

Update Tag Tier 4

PATCH/api/files/:id/tagCopied!

Updates a file review tag.

Request

Path

idstringrequired
File ID

Body

tagstringrequired
New review tag

Possible values: IN_PROGRESSNEED_REVIEWNEED_EDITON_HOLDAPPROVEDREJECTEDCLOSED

Response

Returns 204 No Content.

Example

bash
curl -X PATCH 'https://api.youvico.com/api/files/8fe89e5a-1d8f-4302-8437-fb0390ecf8eb/tag' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{ "tag": "APPROVED" }'