> ## 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 Blob

Update a blob's profile and settings.

## **PATCH** `/blobs/:org_id/:blob_id`

### Path Parameters

| Parameter | Type   | Required | Description                        |
| :-------- | :----- | :------- | :--------------------------------- |
| `org_id`  | string | Yes      | The unique ID of the organization. |
| `blob_id` | string | Yes      | The unique ID of the blob.         |

### Request Body

| Parameter     | Type   | Required | Description               |
| :------------ | :----- | :------- | :------------------------ |
| `visibility`  | string | No       | `public` or `private`.    |
| `name`        | string | No       | Display name of the blob. |
| `description` | string | No       | Description of the blob.  |
| `url`         | string | No       | External URL.             |
| `tags`        | array  | No       | List of string tags.      |

### Response

Returns an empty JSON object upon success.

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "description": "Updated description",
    "tags": ["latest", "production"]
  }
  ```

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