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

# Zoho CRM: README

> Update specific notification information. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Update specific notification information.

<Info>
  Tool ID: `zoho_crm_notifications_update_notification_info`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'zoho_crm_notifications_update_notification_info',
  {
    "channel_id": "channel_123",
    "notify_url": "https://example.com",
    "events": [
      "example"
    ]
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute zoho_crm_notifications_update_notification_info --input '{
  "channel_id": "channel_123",
  "notify_url": "https://example.com",
  "events": [
    "example"
  ]
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get zoho_crm_notifications_update_notification_info --json` for the complete live contract.

## Input reference

Update specific notification info request wrapper.

| Name                                   | Type      | Required | Default | Details                                                               |
| -------------------------------------- | --------- | -------- | ------- | --------------------------------------------------------------------- |
| `payload.channel_id`                   | `string`  | Yes      | —       | Channel identifier to update. Maximum length: 64.                     |
| `payload.notify_url`                   | `string`  | Yes      | —       | Destination callback URL. Maximum length: 255.                        |
| `payload.channel_expiry`               | `string`  | No       | —       | New expiry timestamp (\<= 1 week). Format: `date-time`.               |
| `payload.events`                       | `array`   | Yes      | —       | Updated event subscriptions. Maximum items: 50.                       |
| `payload.notification_condition`       | `array`   | No       | —       | Conditional field selection groups (max 2 objects). Maximum items: 2. |
| `payload.notify_on_related_action`     | `boolean` | No       | —       | Notify on related action flag.                                        |
| `payload.return_affected_field_values` | `boolean` | No       | —       | Return affected field values in notification payloads.                |
| `payload.token`                        | `string`  | No       | —       | Verification token. Maximum length: 256.                              |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Update specific notification info request wrapper.",
    "properties": {
      "channel_id": {
        "type": "string",
        "description": "Channel identifier to update.",
        "maxLength": 64
      },
      "notify_url": {
        "type": "string",
        "description": "Destination callback URL.",
        "maxLength": 255
      },
      "channel_expiry": {
        "type": "string",
        "description": "New expiry timestamp (<= 1 week).",
        "format": "date-time"
      },
      "events": {
        "type": "array",
        "description": "Updated event subscriptions.",
        "maxItems": 50,
        "items": {
          "type": "string",
          "description": "Event spec module.operation",
          "maxLength": 128
        }
      },
      "notification_condition": {
        "type": "array",
        "description": "Conditional field selection groups (max 2 objects).",
        "maxItems": 2,
        "items": {
          "type": "object",
          "description": "Single condition definition.",
          "properties": {
            "type": {
              "type": "string",
              "description": "Condition type: field_selection",
              "enum": [
                "field_selection"
              ]
            },
            "module": {
              "type": "object",
              "description": "Module context for field selection.",
              "properties": {
                "api_name": {
                  "type": "string",
                  "description": "Module API name.",
                  "maxLength": 64
                },
                "id": {
                  "type": "string",
                  "description": "Module ID.",
                  "maxLength": 32
                }
              },
              "required": [
                "api_name"
              ],
              "additionalProperties": false
            },
            "field_selection": {
              "type": "object",
              "description": "Field selection grouping.",
              "properties": {
                "group_operator": {
                  "type": "string",
                  "description": "Group operator.",
                  "enum": [
                    "and",
                    "or"
                  ]
                },
                "group": {
                  "type": "array",
                  "description": "Field references (max 10).",
                  "maxItems": 10,
                  "items": {
                    "type": "object",
                    "description": "Field reference.",
                    "properties": {
                      "api_name": {
                        "type": "string",
                        "description": "Field API name.",
                        "maxLength": 64
                      },
                      "id": {
                        "type": "string",
                        "description": "Field ID.",
                        "maxLength": 32
                      }
                    },
                    "required": [
                      "api_name"
                    ],
                    "additionalProperties": false
                  }
                }
              },
              "required": [
                "group_operator",
                "group"
              ],
              "additionalProperties": false
            }
          },
          "required": [
            "type",
            "module",
            "field_selection"
          ],
          "additionalProperties": false
        }
      },
      "notify_on_related_action": {
        "type": "boolean",
        "description": "Notify on related action flag."
      },
      "return_affected_field_values": {
        "type": "boolean",
        "description": "Return affected field values in notification payloads."
      },
      "token": {
        "type": "string",
        "description": "Verification token.",
        "maxLength": 256
      }
    },
    "required": [
      "channel_id",
      "notify_url",
      "events"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                  | Type     | Required | Default | Details                                           |
| ----------------------------------------------------- | -------- | -------- | ------- | ------------------------------------------------- |
| `result.data`                                         | `object` | Yes      | —       | Update info result wrapper.                       |
| `result.data.watch`                                   | `array`  | Yes      | —       | List of update result entries. Maximum items: 50. |
| `result.data.watch[].code`                            | `string` | Yes      | —       | Result code. Maximum length: 32.                  |
| `result.data.watch[].details`                         | `object` | Yes      | —       | Update details container.                         |
| `result.data.watch[].details.events`                  | `array`  | Yes      | —       | Updated event channel details. Maximum items: 50. |
| `result.data.watch[].details.events[].channel_expiry` | `string` | Yes      | —       | Expiry timestamp. Format: `date-time`.            |
| `result.data.watch[].details.events[].resource_uri`   | `string` | Yes      | —       | Resource URI. Maximum length: 255.                |
| `result.data.watch[].details.events[].resource_id`    | `string` | Yes      | —       | Resource identifier. Maximum length: 64.          |
| `result.data.watch[].details.events[].resource_name`  | `string` | Yes      | —       | Resource name. Maximum length: 128.               |
| `result.data.watch[].details.events[].channel_id`     | `string` | Yes      | —       | Channel identifier. Maximum length: 64.           |
| `result.data.watch[].message`                         | `string` | Yes      | —       | Human readable message. Maximum length: 255.      |
| `result.data.watch[].status`                          | `string` | Yes      | —       | Status string. Maximum length: 32.                |
| `result.meta`                                         | `object` | No       | —       | Additional response metadata (status, paging).    |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Update info result wrapper.",
        "properties": {
          "watch": {
            "type": "array",
            "description": "List of update result entries.",
            "maxItems": 50,
            "items": {
              "type": "object",
              "description": "Single update result.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Result code.",
                  "maxLength": 32
                },
                "details": {
                  "type": "object",
                  "description": "Update details container.",
                  "properties": {
                    "events": {
                      "type": "array",
                      "description": "Updated event channel details.",
                      "maxItems": 50,
                      "items": {
                        "type": "object",
                        "description": "Updated event channel detail.",
                        "properties": {
                          "channel_expiry": {
                            "type": "string",
                            "description": "Expiry timestamp.",
                            "format": "date-time"
                          },
                          "resource_uri": {
                            "type": "string",
                            "description": "Resource URI.",
                            "maxLength": 255
                          },
                          "resource_id": {
                            "type": "string",
                            "description": "Resource identifier.",
                            "maxLength": 64
                          },
                          "resource_name": {
                            "type": "string",
                            "description": "Resource name.",
                            "maxLength": 128
                          },
                          "channel_id": {
                            "type": "string",
                            "description": "Channel identifier.",
                            "maxLength": 64
                          }
                        },
                        "required": [
                          "channel_expiry",
                          "resource_uri",
                          "resource_id",
                          "resource_name",
                          "channel_id"
                        ],
                        "additionalProperties": false
                      }
                    }
                  },
                  "required": [
                    "events"
                  ],
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "Human readable message.",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "Status string.",
                  "maxLength": 32
                }
              },
              "required": [
                "code",
                "details",
                "message",
                "status"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "watch"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
