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

> DELETE /settings/variables. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

DELETE /settings/variables.

<Info>
  Tool ID: `zoho_crm_variables_delete_variables`
</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_variables_delete_variables',
  {
    "ids": "example",
    "rids": "example"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_variables_delete_variables --input '{
  "ids": "example",
  "rids": "example"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "variables": [
      {
        "code": "example",
        "details": {
          "id": "id_123",
          "rid": "example",
          "api_name": "Example"
        },
        "message": "Example message"
      }
    ]
  }
}
```

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

## Input reference

Delete all

| Name           | Type     | Required | Default | Details                           |
| -------------- | -------- | -------- | ------- | --------------------------------- |
| `payload.ids`  | `string` | No       | —       | param field for variable with id  |
| `payload.rids` | `string` | No       | —       | param field for variable with rid |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Delete all",
    "properties": {
      "ids": {
        "type": "string",
        "description": "param field for variable with id"
      },
      "rids": {
        "type": "string",
        "description": "param field for variable with rid"
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                        | Type     | Required | Default | Details                                                                                                |
| ------------------------------------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------------------------ |
| `result.data`                               | `object` | Yes      | —       | Batch removal response indicating mixed outcomes for multiple variables, with per-item result details. |
| `result.data.variables`                     | `array`  | No       | —       | Field: variables Maximum items: 3.                                                                     |
| `result.data.variables[].code`              | `string` | No       | —       | Field: code Maximum length: 255.                                                                       |
| `result.data.variables[].details`           | `object` | No       | —       | Details of an individual variable operation result, including the id of the affected variable.         |
| `result.data.variables[].details.id`        | `string` | No       | —       | Field: id Maximum length: 255.                                                                         |
| `result.data.variables[].details.rid`       | `string` | No       | —       | Field: rid Maximum length: 255.                                                                        |
| `result.data.variables[].details.api_name`  | `string` | No       | —       | Field: api\_name Maximum length: 255.                                                                  |
| `result.data.variables[].details.json_path` | `string` | No       | —       | Detail field: json\_path Maximum length: 255.                                                          |
| `result.data.variables[].message`           | `string` | No       | —       | Field: message Maximum length: 255.                                                                    |
| `result.data.variables[].status`            | `string` | No       | —       | Field: status 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": "Batch removal response indicating mixed outcomes for multiple variables, with per-item result details.",
        "properties": {
          "variables": {
            "type": "array",
            "description": "Field: variables",
            "maxItems": 3,
            "items": {
              "type": "object",
              "description": "Per-item outcome for a variable operation, including code, message, status, and details such as the resulting variable id.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Field: code",
                  "maxLength": 255
                },
                "details": {
                  "type": "object",
                  "description": "Details of an individual variable operation result, including the id of the affected variable.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Field: id",
                      "maxLength": 255
                    },
                    "rid": {
                      "type": "string",
                      "description": "Field: rid",
                      "maxLength": 255
                    },
                    "api_name": {
                      "type": "string",
                      "description": "Field: api_name",
                      "maxLength": 255
                    },
                    "json_path": {
                      "type": "string",
                      "description": "Detail field: json_path",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "Field: message",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "Field: status",
                  "maxLength": 255
                }
              },
              "additionalProperties": false
            }
          }
        },
        "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)
