> ## 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 picklist value associations. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Get picklist value associations.

<Info>
  Tool ID: `zoho_crm_global_picklists_get_pick_list_values_associations`
</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_global_picklists_get_pick_list_values_associations',
  {
    "id": "id_123",
    "picklist_value_id": "picklist_value_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_global_picklists_get_pick_list_values_associations --input '{
  "id": "id_123",
  "picklist_value_id": "picklist_value_123"
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get zoho_crm_global_picklists_get_pick_list_values_associations --json` for the complete live contract.

## Input reference

To the list of features like blueprints, workflows create, workflow convert, workflow task, ABM, etc in which a particular picklist value is used.

| Name                        | Type     | Required | Default | Details                                                                     |
| --------------------------- | -------- | -------- | ------- | --------------------------------------------------------------------------- |
| `payload.id`                | `string` | Yes      | —       | Numeric id of the resource. Format: `int64`.                                |
| `payload.picklist_value_id` | `string` | Yes      | —       | The ID of the picklist value to retrieve associations for. Format: `int64`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "To the list of features like blueprints, workflows create, workflow convert, workflow task, ABM, etc in which a particular picklist value is used.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Numeric id of the resource.",
        "format": "int64"
      },
      "picklist_value_id": {
        "type": "string",
        "description": "The ID of the picklist value to retrieve associations for.",
        "format": "int64"
      }
    },
    "required": [
      "id",
      "picklist_value_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                              | Type     | Required | Default | Details                                                                                                   |
| ----------------------------------------------------------------- | -------- | -------- | ------- | --------------------------------------------------------------------------------------------------------- |
| `result.data`                                                     | `object` | Yes      | —       | Response object containing picklist value associations.                                                   |
| `result.data.pick_list_values_associations`                       | `array`  | Yes      | —       | Array of picklist value associations grouped by association type. Maximum items: 100.                     |
| `result.data.pick_list_values_associations[].resources`           | `array`  | Yes      | —       | Array of resources associated with the picklist value. Maximum items: 100.                                |
| `result.data.pick_list_values_associations[].resources[].name`    | `string` | Yes      | —       | Name of the resource. Maximum length: 255.                                                                |
| `result.data.pick_list_values_associations[].resources[].details` | `record` | Yes      | —       | Details about the resource associations.                                                                  |
| `result.data.pick_list_values_associations[].resources[].id`      | `string` | Yes      | —       | Id of the resource. Format: `int64`.                                                                      |
| `result.data.pick_list_values_associations[].type`                | `string` | Yes      | —       | Type of association (field\_update, task, blueprint, orchestration, workflow, etc.). Maximum length: 100. |
| `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 object containing picklist value associations.",
        "properties": {
          "pick_list_values_associations": {
            "type": "array",
            "description": "Array of picklist value associations grouped by association type.",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "Association group for a specific type of feature.",
              "properties": {
                "resources": {
                  "type": "array",
                  "description": "Array of resources associated with the picklist value.",
                  "maxItems": 100,
                  "items": {
                    "type": "object",
                    "description": "Resource object containing association details.",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Name of the resource.",
                        "maxLength": 255
                      },
                      "details": {
                        "type": "object",
                        "description": "Details about the resource associations.",
                        "additionalProperties": true
                      },
                      "id": {
                        "type": "string",
                        "description": "Id of the resource.",
                        "format": "int64"
                      }
                    },
                    "required": [
                      "name",
                      "details",
                      "id"
                    ],
                    "additionalProperties": false
                  }
                },
                "type": {
                  "type": "string",
                  "description": "Type of association (field_update, task, blueprint, orchestration, workflow, etc.).",
                  "maxLength": 100
                }
              },
              "required": [
                "resources",
                "type"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "pick_list_values_associations"
        ],
        "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)
