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

> Update Specific Related Record. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Update Specific Related Record.

<Info>
  Tool ID: `zoho_crm_related_records_update_specific_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_update_specific_related_record --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "data": [
      {
        "code": "SUCCESS",
        "status": "success"
      }
    ]
  }
}
```

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

## Input reference

Request payload for updating a related record

| 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.data`               | `array`  | Yes      | —       | Array containing the record to update Minimum items: 1. Maximum items: 1.                                                                                            |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request payload for updating a related record",
    "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]+$"
      },
      "data": {
        "type": "array",
        "description": "Array containing the record to update",
        "minItems": 1,
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "Record update with ID and fields to modify",
          "properties": {
            "id": {
              "type": "string",
              "description": "Unique identifier of the record to update",
              "maxLength": 20,
              "pattern": "^[0-9]+$"
            }
          },
          "required": [
            "id"
          ],
          "additionalProperties": true
        }
      }
    },
    "required": [
      "parentRecordModule",
      "parentRecord",
      "relatedList",
      "record",
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                    | Type                                                                       | Required | Default | Details                                                                                                    |
| --------------------------------------- | -------------------------------------------------------------------------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
| `result.data`                           | `object`                                                                   | Yes      | —       | Response structure for bulk operations (update, delete)                                                    |
| `result.data.data`                      | `array`                                                                    | Yes      | —       | Array of operation results per record Maximum items: 100.                                                  |
| `result.data.data[].code`               | `"SUCCESS" \| "INVALID_DATA" \| "DUPLICATE_DATA" \| "MANDATORY_NOT_FOUND"` | Yes      | —       | Result code for the operation Allowed: `SUCCESS`, `INVALID_DATA`, `DUPLICATE_DATA`, `MANDATORY_NOT_FOUND`. |
| `result.data.data[].details`            | `object`                                                                   | No       | —       | Operation details including affected record ID                                                             |
| `result.data.data[].details.id`         | `string`                                                                   | No       | —       | ID of the affected record Maximum length: 20. Pattern: `^[0-9]+$`.                                         |
| `result.data.data[].details.api_name`   | `string`                                                                   | No       | —       | API name of the field that caused the error (if applicable). Maximum length: 100.                          |
| `result.data.data[].details.json_path`  | `string`                                                                   | No       | —       | JSONPath to the field in request payload (if applicable). Maximum length: 500.                             |
| `result.data.data[].details.param_name` | `string`                                                                   | No       | —       | Parameter name that caused the error (if applicable). Maximum length: 100.                                 |
| `result.data.data[].message`            | `string`                                                                   | No       | —       | Human-readable result message Maximum length: 500.                                                         |
| `result.data.data[].status`             | `"success" \| "error"`                                                     | Yes      | —       | Operation status Allowed: `success`, `error`.                                                              |
| `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 structure for bulk operations (update, delete)",
        "properties": {
          "data": {
            "type": "array",
            "description": "Array of operation results per record",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "Individual operation result",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Result code for the operation",
                  "enum": [
                    "SUCCESS",
                    "INVALID_DATA",
                    "DUPLICATE_DATA",
                    "MANDATORY_NOT_FOUND"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "Operation details including affected record ID",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID of the affected record",
                      "maxLength": 20,
                      "pattern": "^[0-9]+$"
                    },
                    "api_name": {
                      "type": "string",
                      "description": "API name of the field that caused the error (if applicable).",
                      "maxLength": 100
                    },
                    "json_path": {
                      "type": "string",
                      "description": "JSONPath to the field in request payload (if applicable).",
                      "maxLength": 500
                    },
                    "param_name": {
                      "type": "string",
                      "description": "Parameter name that caused the error (if applicable).",
                      "maxLength": 100
                    }
                  },
                  "additionalProperties": true
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable result message",
                  "maxLength": 500
                },
                "status": {
                  "type": "string",
                  "description": "Operation status",
                  "enum": [
                    "success",
                    "error"
                  ]
                }
              },
              "required": [
                "code",
                "status"
              ],
              "additionalProperties": false
            }
          }
        },
        "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)
