> ## 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 field dependency. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Delete a field dependency.

<Info>
  Tool ID: `zoho_crm_map_dependency_delete_map_dependency`
</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_map_dependency_delete_map_dependency --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "map_dependency": [
      {
        "status": "success",
        "code": "SUCCESS",
        "message": "Example message",
        "details": {
          "id": "id_123"
        }
      }
    ]
  }
}
```

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

## Input reference

Deletes an existing field dependency from a specific layout. This operation permanently removes the dependency mapping between parent and child fields.

| Name                   | Type     | Required | Default | Details                                                                                                    |
| ---------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
| `payload.module`       | `string` | Yes      | —       | API name of the module to which the layout belongs Maximum length: 50. Pattern: `^[A-Za-z][A-Za-z0-9_]*$`. |
| `payload.layoutId`     | `string` | Yes      | —       | The unique identifier of the layout Format: `int64`. Pattern: `^[0-9]+$`.                                  |
| `payload.dependencyId` | `string` | Yes      | —       | The unique identifier of the map dependency Format: `int64`.                                               |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Deletes an existing field dependency from a specific layout. This operation permanently removes the dependency mapping between parent and child fields.",
    "properties": {
      "module": {
        "type": "string",
        "description": "API name of the module to which the layout belongs",
        "maxLength": 50,
        "pattern": "^[A-Za-z][A-Za-z0-9_]*$"
      },
      "layoutId": {
        "type": "string",
        "description": "The unique identifier of the layout",
        "pattern": "^[0-9]+$",
        "format": "int64"
      },
      "dependencyId": {
        "type": "string",
        "description": "The unique identifier of the map dependency",
        "format": "int64"
      }
    },
    "required": [
      "module",
      "layoutId",
      "dependencyId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                      | Type        | Required | Default | Details                                                  |
| ----------------------------------------- | ----------- | -------- | ------- | -------------------------------------------------------- |
| `result.data`                             | `object`    | Yes      | —       | Success response for deleting a field dependency         |
| `result.data.map_dependency`              | `array`     | Yes      | —       | Array containing the deletion result Maximum items: 1.   |
| `result.data.map_dependency[].status`     | `"success"` | Yes      | —       | Status of the operation Allowed: `success`.              |
| `result.data.map_dependency[].code`       | `"SUCCESS"` | Yes      | —       | Success code Allowed: `SUCCESS`.                         |
| `result.data.map_dependency[].message`    | `string`    | Yes      | —       | Success message Maximum length: 500.                     |
| `result.data.map_dependency[].details`    | `object`    | Yes      | —       | Details of the operation result                          |
| `result.data.map_dependency[].details.id` | `string`    | Yes      | —       | The unique identifier of the dependency Format: `int64`. |
| `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": "Success response for deleting a field dependency",
        "properties": {
          "map_dependency": {
            "type": "array",
            "description": "Array containing the deletion result",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Standard success response structure",
              "properties": {
                "status": {
                  "type": "string",
                  "description": "Status of the operation",
                  "enum": [
                    "success"
                  ]
                },
                "code": {
                  "type": "string",
                  "description": "Success code",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Success message",
                  "maxLength": 500
                },
                "details": {
                  "type": "object",
                  "description": "Details of the operation result",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The unique identifier of the dependency",
                      "format": "int64"
                    }
                  },
                  "required": [
                    "id"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "status",
                "code",
                "message",
                "details"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "map_dependency"
        ],
        "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)
