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

> Cancel Meeting. Zoho CRM Cancel Meetings Cancel Meetings reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Cancel Meeting.

<Info>
  Tool ID: `zoho_crm_cancel_meetings_cancel_meetings`
</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_cancel_meetings_cancel_meetings',
  {
    "event": "example",
    "data": [
      {
        "send_cancelling_mail": true
      }
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_cancel_meetings_cancel_meetings --input '{
  "event": "example",
  "data": [
    {
      "send_cancelling_mail": true
    }
  ]
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "data": [
      {
        "code": "SUCCESS",
        "message": "Example message",
        "status": "success",
        "details": {
          "id": "id_123"
        }
      }
    ]
  }
}
```

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

## Input reference

Contains Data properties

| Name            | Type     | Required | Default | Details                                                                                   |
| --------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------- |
| `payload.event` | `string` | Yes      | —       | This refers to the Event's id that need to be cancel Maximum length: 255.                 |
| `payload.data`  | `array`  | Yes      | —       | Data contains whether to send meeting cancellation notification or not Maximum items: 10. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Contains Data properties",
    "properties": {
      "event": {
        "type": "string",
        "description": "This refers to the Event's id that need to be cancel",
        "maxLength": 255
      },
      "data": {
        "type": "array",
        "description": "Data contains whether to send meeting cancellation notification or not",
        "maxItems": 10,
        "items": {
          "type": "object",
          "description": "Data Properties",
          "properties": {
            "send_cancelling_mail": {
              "type": "boolean",
              "description": "Mention whether to send meeting cancellation notification mail to participants or not."
            }
          },
          "required": [
            "send_cancelling_mail"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "event",
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                            | Type        | Required | Default | Details                                           |
| ------------------------------- | ----------- | -------- | ------- | ------------------------------------------------- |
| `result.data`                   | `object`    | Yes      | —       | Contains success response data                    |
| `result.data.data`              | `array`     | Yes      | —       | Contains success response data Maximum items: 10. |
| `result.data.data[].code`       | `"SUCCESS"` | Yes      | —       | Success Code Allowed: `SUCCESS`.                  |
| `result.data.data[].message`    | `string`    | Yes      | —       | Success Message Maximum length: 255.              |
| `result.data.data[].status`     | `"success"` | Yes      | —       | Success Status Allowed: `success`.                |
| `result.data.data[].details`    | `object`    | Yes      | —       | Contains Cancel meeting's ID                      |
| `result.data.data[].details.id` | `string`    | Yes      | —       | Detail\_field - ID Maximum length: 255.           |
| `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": "Contains success response data",
        "properties": {
          "data": {
            "type": "array",
            "description": "Contains success response data",
            "maxItems": 10,
            "items": {
              "type": "object",
              "description": "Success response Properties",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Success Code",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Success Message",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "Success Status",
                  "enum": [
                    "success"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "Contains Cancel meeting's ID",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Detail_field - ID",
                      "maxLength": 255
                    }
                  },
                  "required": [
                    "id"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "code",
                "message",
                "status",
                "details"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "data"
        ],
        "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)
