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

> Create Duplicate Check Preference. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Create Duplicate Check Preference.

<Info>
  Tool ID: `zoho_crm_duplicate_check_preference_create_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_create_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_create_duplicate_check_preference --json` for the latest machine-readable contract.

## Input reference

Schema for getting 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": "Schema for getting 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": [
              "converted_records",
              "mapped_module_records"
            ]
          },
          "type_configurations": {
            "type": "array",
            "description": "Configurations for the duplicate check preference type",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Type configuration details",
              "properties": {
                "field_mappings": {
                  "type": "array",
                  "description": "Field mappings for duplicate check",
                  "maxItems": 5,
                  "items": {
                    "type": "object",
                    "description": "Field mapping details",
                    "properties": {
                      "current_field": {
                        "type": "object",
                        "description": "Current field details",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "Unique identifier of the field",
                            "maxLength": 50
                          },
                          "api_name": {
                            "type": "string",
                            "description": "API name of the field",
                            "maxLength": 50
                          },
                          "name": {
                            "type": "string",
                            "description": "Display name of the field",
                            "maxLength": 100
                          }
                        },
                        "required": [
                          "id",
                          "api_name",
                          "name"
                        ],
                        "additionalProperties": false
                      },
                      "mapped_field": {
                        "type": "object",
                        "description": "Mapped field details",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "Unique identifier of the mapped field",
                            "maxLength": 50
                          },
                          "api_name": {
                            "type": "string",
                            "description": "API name of the mapped field",
                            "maxLength": 50
                          },
                          "name": {
                            "type": "string",
                            "description": "Display name of the mapped field",
                            "maxLength": 100
                          }
                        },
                        "required": [
                          "id",
                          "api_name",
                          "name"
                        ],
                        "additionalProperties": false
                      }
                    },
                    "required": [
                      "current_field",
                      "mapped_field"
                    ],
                    "additionalProperties": false
                  }
                },
                "mapped_module": {
                  "type": "object",
                  "description": "Mapped module details",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier of the module",
                      "maxLength": 50
                    },
                    "api_name": {
                      "type": "string",
                      "description": "API name of the module",
                      "enum": [
                        "Contacts"
                      ]
                    },
                    "name": {
                      "type": "string",
                      "description": "Display name of the module",
                      "enum": [
                        "Contacts"
                      ]
                    }
                  },
                  "required": [
                    "id",
                    "api_name",
                    "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 wrapper object containing the duplicate check preference details.                               |
| `result.data.duplicate_check_preference`         | `object`    | Yes      | —       | Details of the duplicate check preference configuration.                                                 |
| `result.data.duplicate_check_preference.code`    | `"SUCCESS"` | No       | —       | Status code indicating the result of the operation. Allowed: `SUCCESS`.                                  |
| `result.data.duplicate_check_preference.status`  | `"success"` | No       | —       | Status of the operation. Allowed: `success`.                                                             |
| `result.data.duplicate_check_preference.message` | `string`    | No       | —       | Human-readable message providing additional information about the operation result. Maximum length: 100. |
| `result.data.duplicate_check_preference.details` | `record`    | No       | —       | Additional details related to the 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 wrapper object containing the duplicate check preference details.",
        "properties": {
          "duplicate_check_preference": {
            "type": "object",
            "description": "Details of the duplicate check preference configuration.",
            "properties": {
              "code": {
                "type": "string",
                "description": "Status code indicating the result of the operation.",
                "enum": [
                  "SUCCESS"
                ]
              },
              "status": {
                "type": "string",
                "description": "Status of the operation.",
                "enum": [
                  "success"
                ]
              },
              "message": {
                "type": "string",
                "description": "Human-readable message providing additional information about the operation result.",
                "maxLength": 100
              },
              "details": {
                "type": "object",
                "description": "Additional details related to the operation.",
                "additionalProperties": false
              }
            },
            "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)
