> ## 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 a CRM profile. Zoho CRM Profiles Update Profile reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Update a CRM profile.

<Info>
  Tool ID: `zoho_crm_profiles_update_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_update_profile --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "profiles": [
      {
        "status": "success"
      }
    ]
  }
}
```

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

## Input reference

Update 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       | —       | Profiles to update. Maximum items: 1.                                                                           |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Update profiles request.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Profile identifier.",
        "minLength": 1,
        "maxLength": 19,
        "pattern": "^[0-9]{1,19}$",
        "format": "int64"
      },
      "profiles": {
        "type": "array",
        "description": "Profiles to update.",
        "maxItems": 1,
        "items": {
          "type": "object",
          "description": "Profile update payload.",
          "minProperties": 1,
          "properties": {
            "name": {
              "type": [
                "string",
                "null"
              ],
              "description": "Updated profile name.",
              "maxLength": 50
            },
            "description": {
              "type": [
                "string",
                "null"
              ],
              "description": "Updated profile description.",
              "maxLength": 250
            },
            "permissions_details": {
              "type": "array",
              "description": "Permission enablement entries to update for this profile.",
              "maxItems": 1000,
              "items": {
                "type": "object",
                "description": "Single permission toggle entry.",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "Unique identifier (64-bit integer represented as string)",
                    "minLength": 1,
                    "maxLength": 19,
                    "pattern": "^[0-9]{1,19}$",
                    "format": "int64"
                  },
                  "enabled": {
                    "type": "boolean",
                    "description": "Whether the permission is enabled for the profile."
                  }
                },
                "required": [
                  "id",
                  "enabled"
                ],
                "additionalProperties": false
              }
            }
          },
          "additionalProperties": false
        }
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                             | Type        | Required | Default | Details                                                    |
| -------------------------------- | ----------- | -------- | ------- | ---------------------------------------------------------- |
| `result.data`                    | `object`    | Yes      | —       | Update response.                                           |
| `result.data.profiles`           | `array`     | Yes      | —       | Update results. Maximum items: 50.                         |
| `result.data.profiles[].id`      | `string`    | No       | —       | Profile identifier. Maximum length: 19.                    |
| `result.data.profiles[].code`    | `string`    | No       | —       | Operation result code (e.g., SUCCESS). Maximum length: 50. |
| `result.data.profiles[].details` | `record`    | No       | —       | Additional details about the update operation.             |
| `result.data.profiles[].status`  | `"success"` | Yes      | —       | Result status. Allowed: `success`.                         |
| `result.data.profiles[].message` | `string`    | No       | —       | Result message. Maximum length: 500.                       |
| `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": "Update response.",
        "properties": {
          "profiles": {
            "type": "array",
            "description": "Update results.",
            "maxItems": 50,
            "items": {
              "type": "object",
              "description": "Profile update result.",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Profile identifier.",
                  "maxLength": 19
                },
                "code": {
                  "type": "string",
                  "description": "Operation result code (e.g., SUCCESS).",
                  "maxLength": 50
                },
                "details": {
                  "type": "object",
                  "description": "Additional details about the update operation.",
                  "additionalProperties": true
                },
                "status": {
                  "type": "string",
                  "description": "Result status.",
                  "enum": [
                    "success"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Result message.",
                  "maxLength": 500
                }
              },
              "required": [
                "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)
