> For clean Markdown of any page, append `.md` to the page URL.
> For a complete documentation index, see https://docs.sarvam.ai/llms.txt.
> For full documentation content in one file, see https://docs.sarvam.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.sarvam.ai/_mcp/server.

# Update notification rule

PATCH https://apps.sarvam.ai/api/analytics/v1/{org_id}/{workspace_id}/boards/{board_id}/notifications/{rule_id}
Content-Type: application/json

Partial update covering schedule, name, delivery channels and `enabled`. Setting `enabled: false` pauses delivery and clears `next_run_at`; setting it true recomputes the next run. An empty `email_recipients` list clears email delivery, but a rule must keep at least one channel.

Reference: https://docs.sarvam.ai/api-reference/boards/notifications/update

## Request

### Path parameters

- `org_id` (string, required) — Organization ID
- `workspace_id` (string, required) — Workspace ID
- `board_id` (string, required)
- `rule_id` (string, required)

### Headers

- `X-API-Key` (string, required) — Your workspace API key.

### Body (application/json)

This endpoint expects an object.

- `name` (string, optional, nullable) — New label
- `cron` (string, optional, nullable) — New five-field cron expression evaluated in Asia/Kolkata; minimum interval one hour
- `enabled` (boolean, optional, nullable) — Pause or resume the schedule. Disabling clears `next_run_at`.
- `email_recipients` (list of string, optional, nullable) — Replacement recipient list. An empty list clears email delivery.
- `slack_webhook_url` (string, optional, nullable) — New Slack incoming-webhook URL. Write-only.
- `slack_channel_name` (string, optional, nullable) — New Slack display label

## Response

### 200

Successful Response

- `rule_id` (string, required) — Rule identifier, used as `{rule_id}` in nested routes
- `widget_id` (string, required) — Widget whose result this rule delivers
- `cron` (string, required) — Five-field cron expression, evaluated in Asia/Kolkata
- `enabled` (boolean, required) — False while the schedule is paused
- `created_at` (datetime, required) — Creation time, UTC, RFC 3339
- `updated_at` (datetime, required) — Last change time, UTC, RFC 3339
- `name` (string, optional, nullable) — Label for the rule, or null when unnamed
- `next_run_at` (datetime, optional, nullable) — Next scheduled delivery, UTC. Null when the rule is disabled.
- `email_recipients` (list of string, optional, nullable) — Configured email recipients
- `slack_channel_name` (string, optional, nullable) — Slack destination label, when one is configured
- `slack_configured` (boolean, optional, default: false) — True when a Slack webhook is set. The URL itself is never returned.

## Errors

### 400 Bad Request Error

Request failed validation

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 401 Unauthorized Error

Missing or invalid credentials

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 403 Forbidden Error

Credentials are not scoped to this org and workspace

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 404 Not Found Error

No such resource in this workspace

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 422 Unprocessable Entity Error

Validation Error

- `detail` (list of object, optional)
  - `loc` (list of string or integer, required)
  - `msg` (string, required)
  - `type` (string, required)

### 429 Too Many Requests Error

Rate limit exceeded. Honour the `Retry-After` response header before retrying.

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

### 500 Internal Server Error

Unexpected server error

- `error` (object, required) — Details of the error that occurred.
  - `code` (string, required) — A service-specific error code.
  - `message` (string, required) — A human-readable description of the error.

## Examples

**Request**

```json
{
  "cron": "0 9 * * 1",
  "enabled": false
}
```

**Response**

```json
{
  "rule_id": "9e3f61d0-4a28-4c75-b13e-6d8025af7c94",
  "widget_id": "a4c9e0f7-31b8-4d6a-9e25-7f0b3c81d46e",
  "cron": "30 3 * * *",
  "enabled": true,
  "created_at": "2026-09-05T07:40:12Z",
  "updated_at": "2026-09-05T07:40:12Z",
  "name": "Daily connectivity to ops",
  "next_run_at": "2026-09-16T22:00:00Z",
  "email_recipients": [
    "ops@example.com"
  ],
  "slack_channel_name": "#agent-ops",
  "slack_configured": true
}
```

**SDK Code**

```python
import requests

url = "https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id"

payload = {
    "cron": "0 9 * * 1",
    "enabled": False
}
headers = {
    "X-API-Key": "<your-api-key>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript
const url = 'https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id';
const options = {
  method: 'PATCH',
  headers: {'X-API-Key': '<your-api-key>', 'Content-Type': 'application/json'},
  body: '{"cron":"0 9 * * 1","enabled":false}'
};

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 := "https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id"

	payload := strings.NewReader("{\n  \"cron\": \"0 9 * * 1\",\n  \"enabled\": false\n}")

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

	req.Header.Add("X-API-Key", "<your-api-key>")
	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("https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id")

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

request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<your-api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"cron\": \"0 9 * * 1\",\n  \"enabled\": false\n}"

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("https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id")
  .header("X-API-Key", "<your-api-key>")
  .header("Content-Type", "application/json")
  .body("{\n  \"cron\": \"0 9 * * 1\",\n  \"enabled\": false\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('PATCH', 'https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id', [
  'body' => '{
  "cron": "0 9 * * 1",
  "enabled": false
}',
  'headers' => [
    'Content-Type' => 'application/json',
    'X-API-Key' => '<your-api-key>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id");
var request = new RestRequest(Method.PATCH);
request.AddHeader("X-API-Key", "<your-api-key>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"cron\": \"0 9 * * 1\",\n  \"enabled\": false\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "X-API-Key": "<your-api-key>",
  "Content-Type": "application/json"
]
let parameters = [
  "cron": "0 9 * * 1",
  "enabled": false
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://apps.sarvam.ai/api/analytics/v1/org_id/workspace_id/boards/board_id/notifications/rule_id")! 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()
```