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

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

Delete a CRM profile.

<Info>
  Tool ID: `zoho_crm_profiles_delete_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_delete_profile --json
```

## Example response

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

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

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

## Input reference

Deletes an existing CRM profile by ID. **Scopes:** \* ZohoCRM.settings.profiles.all \* ZohoCRM.settings.profiles.delete

| 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.transfer_to_id` | `string` | Yes      | —       | Profile ID to which users of the deleted profile will be transferred. Format: `int64`. Minimum length: 1. Maximum length: 19. Pattern: `^[0-9]&#123;1,19&#125;$`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Deletes an existing CRM profile by ID. **Scopes:** * ZohoCRM.settings.profiles.all * ZohoCRM.settings.profiles.delete",
    "properties": {
      "id": {
        "type": "string",
        "description": "Profile identifier.",
        "minLength": 1,
        "maxLength": 19,
        "pattern": "^[0-9]{1,19}$",
        "format": "int64"
      },
      "transfer_to_id": {
        "type": "string",
        "description": "Profile ID to which users of the deleted profile will be transferred.",
        "minLength": 1,
        "maxLength": 19,
        "pattern": "^[0-9]{1,19}$",
        "format": "int64"
      }
    },
    "required": [
      "id",
      "transfer_to_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                     | Type        | Required | Default | Details                                                                                                                                              |
| ------------------------ | ----------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`            | `object`    | Yes      | —       | Delete response.                                                                                                                                     |
| `result.data.status`     | `"success"` | Yes      | —       | Result status. Allowed: `success`.                                                                                                                   |
| `result.data.code`       | `string`    | No       | —       | Result code. Maximum length: 100.                                                                                                                    |
| `result.data.message`    | `string`    | No       | —       | Result message. Maximum length: 500.                                                                                                                 |
| `result.data.details`    | `object`    | No       | —       | Additional details about the delete operation.                                                                                                       |
| `result.data.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.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": "Delete response.",
        "properties": {
          "status": {
            "type": "string",
            "description": "Result status.",
            "enum": [
              "success"
            ]
          },
          "code": {
            "type": "string",
            "description": "Result code.",
            "maxLength": 100
          },
          "message": {
            "type": "string",
            "description": "Result message.",
            "maxLength": 500
          },
          "details": {
            "type": "object",
            "description": "Additional details about the delete 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
          }
        },
        "required": [
          "status"
        ],
        "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)
