> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Revision

Update a revision's details (e.g., comment).

## **PATCH** `/revisions/:id`

### Path Parameters

| Parameter | Type   | Required | Description                    |
| :-------- | :----- | :------- | :----------------------------- |
| `id`      | string | Yes      | The unique ID of the revision. |

### Request Body

| Parameter | Type   | Required | Description                       |
| :-------- | :----- | :------- | :-------------------------------- |
| `comment` | string | No       | Comment or note for the revision. |

### Response

Returns an empty JSON object upon success.

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "comment": "Final version for release."
  }
  ```

  ```json Response theme={null}
  {}
  ```
</CodeGroup>
