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

Get Specific Feature Details.

<Info>
  Tool ID: `zoho_crm_features_get_feature_sepcific_details`
</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_features_get_feature_sepcific_details',
  {
    "feature": "example"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_features_get_feature_sepcific_details --input '{
  "feature": "example"
}' --json
```

## Example response

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

## Input reference

To get the available feature specific details for the current edition

| Name              | Type     | Required | Default | Details                              |
| ----------------- | -------- | -------- | ------- | ------------------------------------ |
| `payload.feature` | `string` | Yes      | —       | Feature api name Maximum length: 25. |
| `payload.module`  | `string` | No       | —       | module name Maximum length: 25.      |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "To get the available feature specific details for the current edition",
    "properties": {
      "feature": {
        "type": "string",
        "description": "Feature api name",
        "maxLength": 25
      },
      "module": {
        "type": "string",
        "description": "module name",
        "maxLength": 25
      }
    },
    "required": [
      "feature"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                                 | Type             | Required | Default | Details                                                            |
| -------------------------------------------------------------------- | ---------------- | -------- | ------- | ------------------------------------------------------------------ |
| `result.data`                                                        | `object`         | Yes      | —       | specific feature details for the current edition                   |
| `result.data.__features`                                             | `array`          | Yes      | —       | specific feature details for the current edition Maximum items: 1. |
| `result.data.__features[].api_name`                                  | `string`         | Yes      | —       | API name of the feature Maximum length: 255.                       |
| `result.data.__features[].parent_feature`                            | `object \| null` | Yes      | —       | Parent feature details                                             |
| `result.data.__features[].parent_feature.api_name`                   | `string`         | Yes      | —       | API name of the feature Maximum length: 255.                       |
| `result.data.__features[].details`                                   | `object \| null` | Yes      | —       | this object will have limits details                               |
| `result.data.__features[].details.available_count`                   | `object`         | No       | —       | availale count details for the feature                             |
| `result.data.__features[].details.available_count.total`             | `integer`        | Yes      | —       | total count Format: `int32`.                                       |
| `result.data.__features[].details.limits`                            | `object`         | Yes      | —       | availale count details for the feature                             |
| `result.data.__features[].details.limits.total`                      | `integer`        | Yes      | —       | total limit Format: `int32`.                                       |
| `result.data.__features[].details.limits.edition_limit`              | `integer`        | No       | —       | edition limit Format: `int32`.                                     |
| `result.data.__features[].details.used_count`                        | `object`         | No       | —       | used count of the feature                                          |
| `result.data.__features[].details.used_count.total`                  | `integer`        | Yes      | —       | total count Format: `int32`.                                       |
| `result.data.__features[].components`                                | `array \| null`  | Yes      | —       | components                                                         |
| `result.data.__features[].components[].api_name`                     | `string`         | Yes      | —       | API name of the feature Maximum length: 255.                       |
| `result.data.__features[].components[].module_supported`             | `boolean`        | Yes      | —       | module wise feature supported or not                               |
| `result.data.__features[].components[].details`                      | `object \| null` | Yes      | —       | this object will have limits details                               |
| `result.data.__features[].components[].details.limits`               | `object`         | Yes      | —       | availale count details for the feature                             |
| `result.data.__features[].components[].details.limits.total`         | `integer`        | Yes      | —       | total limit Format: `int32`.                                       |
| `result.data.__features[].components[].details.limits.edition_limit` | `integer`        | No       | —       | edition limit Format: `int32`.                                     |
| `result.data.__features[].components[].details.used_count`           | `object`         | No       | —       | used count of the feature                                          |
| `result.data.__features[].components[].details.used_count.total`     | `integer`        | Yes      | —       | total count Format: `int32`.                                       |
| `result.data.__features[].components[].feature_label`                | `string`         | Yes      | —       | API name of the feature Maximum length: 255.                       |
| `result.data.__features[].module_supported`                          | `boolean`        | Yes      | —       | module wise feature supported or not                               |
| `result.data.__features[].feature_label`                             | `string \| null` | Yes      | —       | API name of the feature 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": "specific feature details for the current edition",
        "properties": {
          "__features": {
            "type": "array",
            "description": "specific feature details for the current edition",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "specific feature details for the current edition",
              "properties": {
                "api_name": {
                  "type": "string",
                  "description": "API name of the feature",
                  "maxLength": 255
                },
                "parent_feature": {
                  "type": [
                    "object",
                    "null"
                  ],
                  "description": "Parent feature details",
                  "properties": {
                    "api_name": {
                      "type": "string",
                      "description": "API name of the feature",
                      "maxLength": 255
                    }
                  },
                  "required": [
                    "api_name"
                  ],
                  "additionalProperties": false
                },
                "details": {
                  "type": [
                    "object",
                    "null"
                  ],
                  "description": "this object will have limits details",
                  "properties": {
                    "available_count": {
                      "type": "object",
                      "description": "availale count details for the feature",
                      "properties": {
                        "total": {
                          "type": "integer",
                          "description": "total count",
                          "format": "int32"
                        }
                      },
                      "required": [
                        "total"
                      ],
                      "additionalProperties": false
                    },
                    "limits": {
                      "type": "object",
                      "description": "availale count details for the feature",
                      "properties": {
                        "total": {
                          "type": "integer",
                          "description": "total limit",
                          "format": "int32"
                        },
                        "edition_limit": {
                          "type": "integer",
                          "description": "edition limit",
                          "format": "int32"
                        }
                      },
                      "required": [
                        "total"
                      ],
                      "additionalProperties": false
                    },
                    "used_count": {
                      "type": "object",
                      "description": "used count of the feature",
                      "properties": {
                        "total": {
                          "type": "integer",
                          "description": "total count",
                          "format": "int32"
                        }
                      },
                      "required": [
                        "total"
                      ],
                      "additionalProperties": true
                    }
                  },
                  "required": [
                    "limits"
                  ],
                  "additionalProperties": false
                },
                "components": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "description": "components",
                  "items": {
                    "type": "object",
                    "description": "components",
                    "properties": {
                      "api_name": {
                        "type": "string",
                        "description": "API name of the feature",
                        "maxLength": 255
                      },
                      "module_supported": {
                        "type": "boolean",
                        "description": "module wise feature supported or not"
                      },
                      "details": {
                        "type": [
                          "object",
                          "null"
                        ],
                        "description": "this object will have limits details",
                        "properties": {
                          "limits": {
                            "type": "object",
                            "description": "availale count details for the feature",
                            "properties": {
                              "total": {
                                "type": "integer",
                                "description": "total limit",
                                "format": "int32"
                              },
                              "edition_limit": {
                                "type": "integer",
                                "description": "edition limit",
                                "format": "int32"
                              }
                            },
                            "required": [
                              "total"
                            ],
                            "additionalProperties": true
                          },
                          "used_count": {
                            "type": "object",
                            "description": "used count of the feature",
                            "properties": {
                              "total": {
                                "type": "integer",
                                "description": "total count",
                                "format": "int32"
                              }
                            },
                            "required": [
                              "total"
                            ],
                            "additionalProperties": true
                          }
                        },
                        "required": [
                          "limits"
                        ],
                        "additionalProperties": false
                      },
                      "feature_label": {
                        "type": "string",
                        "description": "API name of the feature",
                        "maxLength": 255
                      }
                    },
                    "required": [
                      "api_name",
                      "module_supported",
                      "details",
                      "feature_label"
                    ],
                    "additionalProperties": true
                  }
                },
                "module_supported": {
                  "type": "boolean",
                  "description": "module wise feature supported or not"
                },
                "feature_label": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "API name of the feature",
                  "maxLength": 255
                }
              },
              "required": [
                "api_name",
                "parent_feature",
                "details",
                "components",
                "module_supported",
                "feature_label"
              ],
              "additionalProperties": true
            }
          }
        },
        "required": [
          "__features"
        ],
        "additionalProperties": true
      },
      "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)
