> ## 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 Specific Note. Zoho CRM Related Notes Delete Notes reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline cost.

Delete a Specific Note.

<Info>
  Tool ID: `zoho_crm_related_notes_delete_notes`
</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_related_notes_delete_notes --json
```

## Example response

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

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

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

## Input reference

Deletes a specific note record associated with a parent record using the note ID in the path.

| Name                         | Type     | Required | Default | Details                                                                                                                                    |
| ---------------------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `payload.parentRecordModule` | `string` | Yes      | —       | The module API name of the parent record (e.g., Contacts, Leads, Deals, Accounts) Maximum length: 50. Pattern: `^[A-Za-z_][A-Za-z0-9_]*$`. |
| `payload.parentRecordId`     | `string` | Yes      | —       | The unique identifier of the parent record. Must be a valid numeric record ID. Format: `int64`. Pattern: `^[0-9]+$`.                       |
| `payload.noteId`             | `string` | Yes      | —       | The unique identifier of the specific note record. Must be a valid numeric record ID. Format: `int64`. Pattern: `^[0-9]+$`.                |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Deletes a specific note record associated with a parent record using the note ID in the path.",
    "properties": {
      "parentRecordModule": {
        "type": "string",
        "description": "The module API name of the parent record (e.g., Contacts, Leads, Deals, Accounts)",
        "maxLength": 50,
        "pattern": "^[A-Za-z_][A-Za-z0-9_]*$"
      },
      "parentRecordId": {
        "type": "string",
        "description": "The unique identifier of the parent record. Must be a valid numeric record ID.",
        "pattern": "^[0-9]+$",
        "format": "int64"
      },
      "noteId": {
        "type": "string",
        "description": "The unique identifier of the specific note record. Must be a valid numeric record ID.",
        "pattern": "^[0-9]+$",
        "format": "int64"
      }
    },
    "required": [
      "parentRecordModule",
      "parentRecordId",
      "noteId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                            | Type        | Required | Default | Details                                                |
| ------------------------------- | ----------- | -------- | ------- | ------------------------------------------------------ |
| `result.data`                   | `object`    | Yes      | —       | Success response for note deletion                     |
| `result.data.data`              | `array`     | Yes      | —       | Array of deletion results Maximum items: 200.          |
| `result.data.data[].code`       | `"SUCCESS"` | Yes      | —       | Result code Allowed: `SUCCESS`.                        |
| `result.data.data[].message`    | `string`    | Yes      | —       | Result message Maximum length: 500.                    |
| `result.data.data[].status`     | `"success"` | Yes      | —       | Status of the operation Allowed: `success`.            |
| `result.data.data[].details`    | `object`    | Yes      | —       | Deleted note details                                   |
| `result.data.data[].details.id` | `string`    | Yes      | —       | Unique identifier of the deleted note 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 note deletion",
        "properties": {
          "data": {
            "type": "array",
            "description": "Array of deletion results",
            "maxItems": 200,
            "items": {
              "type": "object",
              "description": "Individual note deletion result",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Result code",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Result message",
                  "maxLength": 500
                },
                "status": {
                  "type": "string",
                  "description": "Status of the operation",
                  "enum": [
                    "success"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "Deleted note details",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier of the deleted note",
                      "format": "int64"
                    }
                  },
                  "required": [
                    "id"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "code",
                "message",
                "status",
                "details"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "data"
        ],
        "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)
