> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://www.comet.com/docs/opik/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://www.comet.com/docs/opik/_mcp/server.

# Update insights view

PATCH http://localhost:5173/api/v1/private/insights-views/{insightsViewId}
Content-Type: application/json

Update insights view by id. Partial updates are supported - only provided fields will be updated.

Reference: https://www.comet.com/docs/opik/reference/rest-api/insights-views/update-insights-view

## Servers

- `http://localhost:5173/api` (Local server, default)
- `https://www.comet.com/opik/api` (Opik Cloud)

## Request

### Path parameters

- `insightsViewId` (string, required)

### Body (application/json)

This endpoint expects an object.

- `name` (string, optional)
- `type` (enum, optional)
  - Allowed values: `multi_project`, `experiments`
- `description` (string, optional)
- `config` (object, optional)

## Response

### 200

Updated insights view

- `name` (string, required)
- `config` (object, required)
- `id` (string, optional)
- `workspace_id` (string, optional)
- `project_id` (string, optional) — Project ID. Takes precedence over project_name when both are provided.
- `slug` (string, optional)
- `type` (enum, optional)
  - Allowed values: `multi_project`, `experiments`
- `scope` (enum, optional)
  - Allowed values: `workspace`, `insights`
- `description` (string, optional)
- `created_by` (string, optional)
- `last_updated_by` (string, optional)
- `created_at` (datetime, optional)
- `last_updated_at` (datetime, optional)

## Errors

### 404 Not Found Error

Insights view not found

- `any`

### 409 Conflict Error

Conflict - insights view with this name already exists

- `any`

## Examples

**Request**

```json
{}
```

**Response**

```json
{
  "name": "string",
  "config": {},
  "id": "string",
  "workspace_id": "string",
  "project_id": "string",
  "slug": "string",
  "type": "multi_project",
  "scope": "workspace",
  "description": "string",
  "created_by": "string",
  "last_updated_by": "string",
  "created_at": "2024-01-15T09:30:00Z",
  "last_updated_at": "2024-01-15T09:30:00Z"
}
```

**SDK Code**

```python
import requests

url = "http://localhost:5173/api/v1/private/insights-views/insightsViewId"

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.patch(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'http://localhost:5173/api/v1/private/insights-views/insightsViewId';
const options = {method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: '{}'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "http://localhost:5173/api/v1/private/insights-views/insightsViewId"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("PATCH", url, payload)

	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("http://localhost:5173/api/v1/private/insights-views/insightsViewId")

http = Net::HTTP.new(url.host, url.port)

request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.patch("http://localhost:5173/api/v1/private/insights-views/insightsViewId")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('PATCH', 'http://localhost:5173/api/v1/private/insights-views/insightsViewId', [
  'body' => '{}',
  'headers' => [
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("http://localhost:5173/api/v1/private/insights-views/insightsViewId");
var request = new RestRequest(Method.PATCH);
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Content-Type": "application/json"]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "http://localhost:5173/api/v1/private/insights-views/insightsViewId")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "PATCH"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```