Skip to content

Update Status Tier 4

PATCH/api/versions/:id/statusCopied!

Updates the review status of a version.

Request

Path

idstringrequired
Version ID

Body

statusstringrequired
New review status

Possible values: IN_PROGRESSNEED_REVIEWNEED_EDITON_HOLDAPPROVEDREJECTEDCLOSED

Response

Returns 204 No Content. The response body is empty.

Example

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

Returns 204 No Content on success.