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

Get Specific Related Record.

<Info>
  Tool ID: `zoho_crm_related_records_get_related_record`
</Info>

## Run this action

This action has conditional or dynamic input fields that cannot be represented by a reliable static example.

Inspect the live contract before executing it:

```bash theme={null}
deepline tools get zoho_crm_related_records_get_related_record --json
```

## Example response

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

## Input reference

Retrieves details of a specific record that is related to a parent record. Returns the record data along with pagination information if applicable.

| Name                         | Type     | Required | Default | Details                                                                                                                                                                                              |
| ---------------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.parentRecordModule` | `string` | Yes      | —       | The module name of the parent record (e.g., Contacts, Leads, Deals, Accounts, Services\_\_s, Price\_Books) Maximum length: 100. Pattern: `^[A-Za-z_][A-Za-z0-9_]*$`.                                 |
| `payload.parentRecord`       | `string` | Yes      | —       | The unique identifier of the parent record. Must be a valid numeric record ID. Maximum length: 20. Pattern: `^[0-9]+$`.                                                                              |
| `payload.relatedList`        | `string` | Yes      | —       | The name of the related list (module) containing the records to retrieve or modify Maximum length: 100. Pattern: `^[A-Za-z_][A-Za-z0-9_]*$`.                                                         |
| `payload.record`             | `string` | Yes      | —       | The unique identifier of the specific related record. Must be a valid numeric record ID. Maximum length: 20. Pattern: `^[0-9]+$`.                                                                    |
| `payload.fields`             | `string` | Yes      | —       | Comma-separated list of field names to include in the response. Field names must follow API naming conventions. Maximum length: 1000. Pattern: `^[A-Za-z_][A-Za-z0-9_]*(,[A-Za-z_][A-Za-z0-9_]*)*$`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieves details of a specific record that is related to a parent record. Returns the record data along with pagination information if applicable.",
    "properties": {
      "parentRecordModule": {
        "type": "string",
        "description": "The module name of the parent record (e.g., Contacts, Leads, Deals, Accounts, Services__s, Price_Books)",
        "maxLength": 100,
        "pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
      },
      "parentRecord": {
        "type": "string",
        "description": "The unique identifier of the parent record. Must be a valid numeric record ID.",
        "maxLength": 20,
        "pattern": "^[0-9]+$"
      },
      "relatedList": {
        "type": "string",
        "description": "The name of the related list (module) containing the records to retrieve or modify",
        "maxLength": 100,
        "pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
      },
      "record": {
        "type": "string",
        "description": "The unique identifier of the specific related record. Must be a valid numeric record ID.",
        "maxLength": 20,
        "pattern": "^[0-9]+$"
      },
      "fields": {
        "type": "string",
        "description": "Comma-separated list of field names to include in the response. Field names must follow API naming conventions.",
        "maxLength": 1000,
        "pattern": "^[A-Za-z_][A-Za-z0-9_]*(,[A-Za-z_][A-Za-z0-9_]*)*$"
      }
    },
    "required": [
      "parentRecordModule",
      "parentRecord",
      "relatedList",
      "record",
      "fields"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                               | Type     | Required | Default | Details                                                                                             |
| ---------------------------------- | -------- | -------- | ------- | --------------------------------------------------------------------------------------------------- |
| `result.data`                      | `object` | Yes      | —       | Response containing a single related record with metadata                                           |
| `result.data.data`                 | `array`  | Yes      | —       | Array containing the single related record Maximum items: 1.                                        |
| `result.data.data[].id`            | `string` | No       | —       | Unique identifier of the related record Maximum length: 20. Pattern: `^[0-9]+$`.                    |
| `result.data.data[].Created_Time`  | `string` | No       | —       | Timestamp when the record was created Format: `date-time`.                                          |
| `result.data.data[].Modified_Time` | `string` | No       | —       | Timestamp when the record was last modified Format: `date-time`.                                    |
| `result.data.data[].Moved_To__s`   | `string` | No       | —       | Stage value to which the record was moved (stage history / picklist movement). 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 containing a single related record with metadata",
        "properties": {
          "data": {
            "type": "array",
            "description": "Array containing the single related record",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Related record object with requested fields",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Unique identifier of the related record",
                  "maxLength": 20,
                  "pattern": "^[0-9]+$"
                },
                "Created_Time": {
                  "type": "string",
                  "description": "Timestamp when the record was created",
                  "format": "date-time"
                },
                "Modified_Time": {
                  "type": "string",
                  "description": "Timestamp when the record was last modified",
                  "format": "date-time"
                },
                "Moved_To__s": {
                  "type": "string",
                  "description": "Stage value to which the record was moved (stage history / picklist movement).",
                  "maxLength": 255
                }
              },
              "additionalProperties": true
            }
          }
        },
        "required": [
          "data"
        ],
        "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)
