> ## 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/variable_groups. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

GET /settings/variable\_groups.

<Info>
  Tool ID: `zoho_crm_variable_groups_get_variable_groups`
</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_variable_groups_get_variable_groups',
  {},
);

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

### CLI

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

## Example response

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

```json theme={null}
{
  "data": {
    "variable_groups": [
      {
        "api_name": "Example",
        "name": "Example",
        "description": "Example description",
        "id": "id_123",
        "rid": "example"
      }
    ]
  }
}
```

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

## Input reference

To get the list variable groups created in crm org

This action does not require input fields.

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "To get the list variable groups created in crm org",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                          | Type             | Required | Default | Details                                                                                                                      |
| --------------------------------------------- | ---------------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                                 | `object`         | Yes      | —       | Wrapper object containing the variable\_groups array of variable group summaries returned by the settings listing operation. |
| `result.data.variable_groups`                 | `array`          | Yes      | —       | Field: variable\_groups Maximum items: 100.                                                                                  |
| `result.data.variable_groups[].display_label` | `string`         | No       | —       | Field: display\_label Maximum length: 255.                                                                                   |
| `result.data.variable_groups[].api_name`      | `string`         | Yes      | —       | Field: api\_name Maximum length: 255.                                                                                        |
| `result.data.variable_groups[].name`          | `string`         | Yes      | —       | Field: name Maximum length: 255.                                                                                             |
| `result.data.variable_groups[].description`   | `null \| string` | Yes      | —       | Field: description Maximum length: 255.                                                                                      |
| `result.data.variable_groups[].id`            | `string`         | Yes      | —       | Field: id Maximum length: 255.                                                                                               |
| `result.data.variable_groups[].rid`           | `string`         | Yes      | —       | Field: rid Maximum length: 255.                                                                                              |
| `result.data.variable_groups[].source`        | `string`         | No       | —       | Field: source 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": "Wrapper object containing the variable_groups array of variable group summaries returned by the settings listing operation.",
        "properties": {
          "variable_groups": {
            "type": "array",
            "description": "Field: variable_groups",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "Key attributes of a variable group as returned by the settings resource, including display label, API name, name, description, id, source, and rid.",
              "properties": {
                "display_label": {
                  "type": "string",
                  "description": "Field: display_label",
                  "maxLength": 255
                },
                "api_name": {
                  "type": "string",
                  "description": "Field: api_name",
                  "maxLength": 255
                },
                "name": {
                  "type": "string",
                  "description": "Field: name",
                  "maxLength": 255
                },
                "description": {
                  "type": [
                    "null",
                    "string"
                  ],
                  "description": "Field: description",
                  "maxLength": 255
                },
                "id": {
                  "type": "string",
                  "description": "Field: id",
                  "maxLength": 255
                },
                "rid": {
                  "type": "string",
                  "description": "Field: rid",
                  "maxLength": 255
                },
                "source": {
                  "type": "string",
                  "description": "Field: source",
                  "maxLength": 255
                }
              },
              "required": [
                "api_name",
                "description",
                "id",
                "rid",
                "name"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "variable_groups"
        ],
        "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)
