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

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

GET /settings/variables.

<Info>
  Tool ID: `zoho_crm_variables_get_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_get_variables',
  {},
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_variables_get_variables --input '{}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "variables": [
      {
        "read_only": true,
        "api_name": "Example",
        "name": "Example",
        "description": "Example description",
        "id": "id_123",
        "source": "example",
        "type": "example",
        "variable_group": {
          "api_name": "Example",
          "id": "id_123"
        },
        "value": "example"
      }
    ]
  }
}
```

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

## Input reference

This helps in fetching all the variables

This action does not require input fields.

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "This helps in fetching all the variables",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                              | Type             | Required | Default | Details                                                                                    |
| ------------------------------------------------- | ---------------- | -------- | ------- | ------------------------------------------------------------------------------------------ |
| `result.data`                                     | `object`         | Yes      | —       | Response wrapper containing an array of variables returned by the list operation.          |
| `result.data.variables`                           | `array`          | Yes      | —       | Field: variables Maximum items: 3.                                                         |
| `result.data.variables[].read_only`               | `boolean`        | Yes      | —       | Field: read\_only                                                                          |
| `result.data.variables[].api_name`                | `string`         | Yes      | —       | Field: api\_name Maximum length: 255.                                                      |
| `result.data.variables[].name`                    | `string`         | Yes      | —       | Field: name Maximum length: 255.                                                           |
| `result.data.variables[].description`             | `string \| null` | Yes      | —       | Field: description                                                                         |
| `result.data.variables[].id`                      | `string`         | Yes      | —       | Field: id Maximum length: 255.                                                             |
| `result.data.variables[].rid`                     | `string`         | No       | —       | Field: rid Maximum length: 255.                                                            |
| `result.data.variables[].source`                  | `string`         | Yes      | —       | Field: source Maximum length: 255.                                                         |
| `result.data.variables[].type`                    | `string`         | Yes      | —       | Field: type Maximum length: 255.                                                           |
| `result.data.variables[].variable_group`          | `object`         | Yes      | —       | Brief reference to a variable group included in list responses, containing id and apiName. |
| `result.data.variables[].variable_group.api_name` | `string`         | Yes      | —       | Field: api\_name Maximum length: 255.                                                      |
| `result.data.variables[].variable_group.id`       | `string`         | Yes      | —       | Field: id Maximum length: 255.                                                             |
| `result.data.variables[].variable_group.rid`      | `string`         | No       | —       | Field: rid Maximum length: 255.                                                            |
| `result.data.variables[].value`                   | `string`         | Yes      | —       | Field: value 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": "Response wrapper containing an array of variables returned by the list operation.",
        "properties": {
          "variables": {
            "type": "array",
            "description": "Field: variables",
            "maxItems": 3,
            "items": {
              "type": "object",
              "description": "Representation of a variable within collection responses, including readOnly, apiName, name, description, id, source, type, value, and group brief.",
              "properties": {
                "read_only": {
                  "type": "boolean",
                  "description": "Field: read_only"
                },
                "api_name": {
                  "type": "string",
                  "description": "Field: api_name",
                  "maxLength": 255
                },
                "name": {
                  "type": "string",
                  "description": "Field: name",
                  "maxLength": 255
                },
                "description": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Field: description"
                },
                "id": {
                  "type": "string",
                  "description": "Field: id",
                  "maxLength": 255
                },
                "rid": {
                  "type": "string",
                  "description": "Field: rid",
                  "maxLength": 255
                },
                "source": {
                  "type": "string",
                  "description": "Field: source",
                  "maxLength": 255
                },
                "type": {
                  "type": "string",
                  "description": "Field: type",
                  "maxLength": 255
                },
                "variable_group": {
                  "type": "object",
                  "description": "Brief reference to a variable group included in list responses, containing id and apiName.",
                  "properties": {
                    "api_name": {
                      "type": "string",
                      "description": "Field: api_name",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "Field: id",
                      "maxLength": 255
                    },
                    "rid": {
                      "type": "string",
                      "description": "Field: rid",
                      "maxLength": 255
                    }
                  },
                  "required": [
                    "api_name",
                    "id"
                  ],
                  "additionalProperties": false
                },
                "value": {
                  "type": "string",
                  "description": "Field: value",
                  "maxLength": 255
                }
              },
              "required": [
                "api_name",
                "description",
                "id",
                "name",
                "read_only",
                "source",
                "type",
                "value",
                "variable_group"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "variables"
        ],
        "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)
