> ## 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 Duplicate Check Preference. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Update Duplicate Check Preference.

<Info>
  Tool ID: `zoho_crm_duplicate_check_preference_update_duplicate_check_preference`
</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_duplicate_check_preference_update_duplicate_check_preference --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "duplicate_check_preference": {
      "code": "SUCCESS",
      "status": "success",
      "message": "Example message"
    }
  }
}
```

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

## Input reference

Request Body for Update Duplicate Check Preference

| Name                                 | Type      | Required | Default | Details                                                                                                      |
| ------------------------------------ | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------ |
| `payload.module`                     | `"Leads"` | Yes      | —       | The API name of the module for which to manage duplicate check preferences. Example: Leads Allowed: `Leads`. |
| `payload.duplicate_check_preference` | `object`  | Yes      | —       | Duplicate Check Preference details                                                                           |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request Body for Update Duplicate Check Preference",
    "properties": {
      "module": {
        "type": "string",
        "description": "The API name of the module for which to manage duplicate check preferences. Example: Leads",
        "enum": [
          "Leads"
        ]
      },
      "duplicate_check_preference": {
        "type": "object",
        "description": "Duplicate Check Preference details",
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of duplicate check preference",
            "enum": [
              "mapped_module_records",
              "converted_records"
            ]
          },
          "type_configurations": {
            "type": "array",
            "description": "Type configurations for duplicate check preference",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Type configuration details",
              "properties": {
                "field_mappings": {
                  "type": "array",
                  "description": "Field mappings between current module and mapped module",
                  "maxItems": 5,
                  "items": {
                    "type": "object",
                    "description": "Field mapping details",
                    "properties": {
                      "current_field": {
                        "type": "object",
                        "description": "Field mappings between current module and mapped module",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "Field mappings between current module and mapped module",
                            "maxLength": 50
                          },
                          "api_name": {
                            "type": "string",
                            "description": "Field mappings between current module and mapped module",
                            "maxLength": 50
                          },
                          "name": {
                            "type": "string",
                            "description": "Field mappings between current module and mapped module",
                            "maxLength": 50
                          }
                        },
                        "required": [
                          "id",
                          "api_name"
                        ],
                        "additionalProperties": false
                      },
                      "mapped_field": {
                        "type": "object",
                        "description": "Mapped field details",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "Mapped field id",
                            "maxLength": 50
                          },
                          "api_name": {
                            "type": "string",
                            "description": "Mapped field API name",
                            "maxLength": 50
                          },
                          "name": {
                            "type": "string",
                            "description": "Field mappings between current module and mapped module",
                            "maxLength": 50
                          }
                        },
                        "required": [
                          "id",
                          "api_name"
                        ],
                        "additionalProperties": false
                      }
                    },
                    "required": [
                      "current_field",
                      "mapped_field"
                    ],
                    "additionalProperties": false
                  }
                },
                "mapped_module": {
                  "type": "object",
                  "description": "Mapped module details",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Mapped module id",
                      "maxLength": 50
                    },
                    "name": {
                      "type": "string",
                      "description": "Mapped module id",
                      "maxLength": 50
                    },
                    "api_name": {
                      "type": "string",
                      "description": "Mapped module API name",
                      "maxLength": 50,
                      "enum": [
                        "Contacts"
                      ]
                    }
                  },
                  "required": [
                    "id",
                    "api_name"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "field_mappings",
                "mapped_module"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "type",
          "type_configurations"
        ],
        "additionalProperties": false
      }
    },
    "required": [
      "module",
      "duplicate_check_preference"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                             | Type        | Required | Default | Details                                                                     |
| ------------------------------------------------ | ----------- | -------- | ------- | --------------------------------------------------------------------------- |
| `result.data`                                    | `object`    | Yes      | —       | Response Body for Update Duplicate Check Preference                         |
| `result.data.duplicate_check_preference`         | `object`    | Yes      | —       | Duplicate Check Preference update response                                  |
| `result.data.duplicate_check_preference.code`    | `"SUCCESS"` | No       | —       | Response code for successful update Allowed: `SUCCESS`.                     |
| `result.data.duplicate_check_preference.status`  | `"success"` | No       | —       | Status of the update operation Allowed: `success`.                          |
| `result.data.duplicate_check_preference.message` | `string`    | No       | —       | Human-readable message regarding the update operation Maximum length: 1000. |
| `result.data.duplicate_check_preference.details` | `record`    | No       | —       | Additional details about the update operation                               |
| `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 Body for Update Duplicate Check Preference",
        "properties": {
          "duplicate_check_preference": {
            "type": "object",
            "description": "Duplicate Check Preference update response",
            "properties": {
              "code": {
                "type": "string",
                "description": "Response code for successful update",
                "enum": [
                  "SUCCESS"
                ]
              },
              "status": {
                "type": "string",
                "description": "Status of the update operation",
                "enum": [
                  "success"
                ]
              },
              "message": {
                "type": "string",
                "description": "Human-readable message regarding the update operation",
                "maxLength": 1000
              },
              "details": {
                "type": "object",
                "description": "Additional details about the update operation",
                "additionalProperties": true
              }
            },
            "additionalProperties": false
          }
        },
        "required": [
          "duplicate_check_preference"
        ],
        "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)
