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

Update an organization's profile and settings.

## **PATCH** `/orgs/:id`

### Path Parameters

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

### Request Body

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

### Response

Returns an empty JSON object upon success.

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "description": "Building the future of blobs.",
    "visibility": "public"
  }
  ```

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