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

> Clone a CRM profile. Zoho CRM Profiles Clone Profile reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Clone a CRM profile.

<Info>
  Tool ID: `zoho_crm_profiles_clone_profile`
</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_profiles_clone_profile --json
```

## Example response

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

## Input reference

Clone profiles request.

| Name               | Type     | Required | Default | Details                                                                                                         |
| ------------------ | -------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------- |
| `payload.id`       | `string` | Yes      | —       | Profile identifier. Format: `int64`. Minimum length: 1. Maximum length: 19. Pattern: `^[0-9]&#123;1,19&#125;$`. |
| `payload.profiles` | `array`  | No       | —       | Profile to create from the clone profile. Maximum items: 1.                                                     |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Clone profiles request.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Profile identifier.",
        "minLength": 1,
        "maxLength": 19,
        "pattern": "^[0-9]{1,19}$",
        "format": "int64"
      },
      "profiles": {
        "type": "array",
        "description": "Profile to create from the clone profile.",
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "new profile definition.",
          "properties": {
            "name": {
              "type": "string",
              "description": "Name for the new profile.",
              "maxLength": 50
            },
            "description": {
              "type": [
                "string",
                "null"
              ],
              "description": "Optional description for the new profile.",
              "maxLength": 250
            }
          },
          "required": [
            "name"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                | Type     | Required | Default | Details                                                                                                                                              |
| ----------------------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                       | `object` | Yes      | —       | Response returned after cloning a profile.                                                                                                           |
| `result.data.profiles`              | `array`  | Yes      | —       | List containing the clone action result (single-item array). Maximum items: 1.                                                                       |
| `result.data.profiles[].code`       | `string` | Yes      | —       | Result code. Maximum length: 100.                                                                                                                    |
| `result.data.profiles[].details`    | `object` | Yes      | —       | Additional details about the clone operation.                                                                                                        |
| `result.data.profiles[].details.id` | `string` | No       | —       | Unique identifier (64-bit integer represented as string) Format: `int64`. Minimum length: 1. Maximum length: 19. Pattern: `^[0-9]&#123;1,19&#125;$`. |
| `result.data.profiles[].message`    | `string` | Yes      | —       | Human-readable result message. Maximum length: 1000.                                                                                                 |
| `result.data.profiles[].status`     | `string` | Yes      | —       | Result status. Maximum length: 50.                                                                                                                   |
| `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 returned after cloning a profile.",
        "properties": {
          "profiles": {
            "type": "array",
            "description": "List containing the clone action result (single-item array).",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Action response for clone profile operation.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Result code.",
                  "maxLength": 100
                },
                "details": {
                  "type": "object",
                  "description": "Additional details about the clone operation.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier (64-bit integer represented as string)",
                      "minLength": 1,
                      "maxLength": 19,
                      "pattern": "^[0-9]{1,19}$",
                      "format": "int64"
                    }
                  },
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable result message.",
                  "maxLength": 1000
                },
                "status": {
                  "type": "string",
                  "description": "Result status.",
                  "maxLength": 50
                }
              },
              "required": [
                "code",
                "details",
                "message",
                "status"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "profiles"
        ],
        "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)
