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

> Disable notification channels. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Disable notification channels.

<Info>
  Tool ID: `zoho_crm_notifications_disable_notifications`
</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_disable_notifications',
  {
    "channel_ids": "channel_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_notifications_disable_notifications --input '{
  "channel_ids": "channel_123"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "watch": [
      {
        "code": "example",
        "details": {
          "resource_uri": "example",
          "resource_id": "resource_123",
          "channel_id": "channel_123"
        },
        "message": "Example message",
        "status": "example"
      }
    ]
  }
}
```

Use `deepline tools get zoho_crm_notifications_disable_notifications --json` for the latest machine-readable contract.

## Input reference

Disable one or more notification channels identified by the channel\_ids query parameter.

| Name                  | Type     | Required | Default | Details                                                               |
| --------------------- | -------- | -------- | ------- | --------------------------------------------------------------------- |
| `payload.channel_ids` | `string` | No       | —       | Comma separated channel ids (delete operations). Maximum length: 512. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Disable one or more notification channels identified by the channel_ids query parameter.",
    "properties": {
      "channel_ids": {
        "type": "string",
        "description": "Comma separated channel ids (delete operations).",
        "maxLength": 512
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                       | Type     | Required | Default | Details                                             |
| ------------------------------------------ | -------- | -------- | ------- | --------------------------------------------------- |
| `result.data`                              | `object` | Yes      | —       | Disable result wrapper.                             |
| `result.data.watch`                        | `array`  | Yes      | —       | List of disable result entries. Maximum items: 200. |
| `result.data.watch[].code`                 | `string` | Yes      | —       | Result code. Maximum length: 32.                    |
| `result.data.watch[].details`              | `object` | Yes      | —       | Disable details container.                          |
| `result.data.watch[].details.resource_uri` | `string` | Yes      | —       | Resource URI. Maximum length: 255.                  |
| `result.data.watch[].details.resource_id`  | `string` | Yes      | —       | Resource identifier. Maximum length: 64.            |
| `result.data.watch[].details.channel_id`   | `string` | Yes      | —       | Channel identifier disabled. 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": "Disable result wrapper.",
        "properties": {
          "watch": {
            "type": "array",
            "description": "List of disable result entries.",
            "maxItems": 200,
            "items": {
              "type": "object",
              "description": "Single disable result.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Result code.",
                  "maxLength": 32
                },
                "details": {
                  "type": "object",
                  "description": "Disable details container.",
                  "properties": {
                    "resource_uri": {
                      "type": "string",
                      "description": "Resource URI.",
                      "maxLength": 255
                    },
                    "resource_id": {
                      "type": "string",
                      "description": "Resource identifier.",
                      "maxLength": 64
                    },
                    "channel_id": {
                      "type": "string",
                      "description": "Channel identifier disabled.",
                      "maxLength": 64
                    }
                  },
                  "required": [
                    "resource_uri",
                    "resource_id",
                    "channel_id"
                  ],
                  "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)
