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

Delete a single record by ID.

<Info>
  Tool ID: `zoho_crm_record_delete_record`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'zoho_crm_record_delete_record',
  {
    "module": "example",
    "recordID": "record_123"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute zoho_crm_record_delete_record --input '{
  "module": "example",
  "recordID": "record_123"
}' --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_record_delete_record --json` for the latest machine-readable contract.

## Input reference

Permanently deletes a specific record from the module using its unique record ID.

| Name               | Type     | Required | Default | Details                                                        |
| ------------------ | -------- | -------- | ------- | -------------------------------------------------------------- |
| `payload.module`   | `string` | Yes      | —       | Specifies the module name Maximum length: 100.                 |
| `payload.recordID` | `string` | Yes      | —       | This ID is used to uniquely identify a record Format: `int64`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Permanently deletes a specific record from the module using its unique record ID.",
    "properties": {
      "module": {
        "type": "string",
        "description": "Specifies the module name",
        "maxLength": 100
      },
      "recordID": {
        "type": "string",
        "description": "This ID is used to uniquely identify a record",
        "format": "int64"
      }
    },
    "required": [
      "module",
      "recordID"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                            | Type        | Required | Default | Details                                                                                          |
| ------------------------------- | ----------- | -------- | ------- | ------------------------------------------------------------------------------------------------ |
| `result.data`                   | `object`    | Yes      | —       | Response schema returned after successfully deleting a record by ID.                             |
| `result.data.data`              | `array`     | Yes      | —       | List containing the result of the delete operation for the requested record. Maximum items: 100. |
| `result.data.data[].code`       | `"SUCCESS"` | Yes      | —       | Machine-readable success code indicating the record was deleted. Allowed: `SUCCESS`.             |
| `result.data.data[].message`    | `string`    | Yes      | —       | Human-readable confirmation message for the delete operation. Maximum length: 1024.              |
| `result.data.data[].status`     | `"success"` | Yes      | —       | Indicates the operation completed successfully. Allowed: `success`.                              |
| `result.data.data[].details`    | `object`    | Yes      | —       | Additional information about the deleted record.                                                 |
| `result.data.data[].details.id` | `string`    | Yes      | —       | Unique identifier of the deleted record. 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": "Response schema returned after successfully deleting a record by ID.",
        "properties": {
          "data": {
            "type": "array",
            "description": "List containing the result of the delete operation for the requested record.",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "Success object representing a deleted record.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Machine-readable success code indicating the record was deleted.",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable confirmation message for the delete operation.",
                  "maxLength": 1024
                },
                "status": {
                  "type": "string",
                  "description": "Indicates the operation completed successfully.",
                  "enum": [
                    "success"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "Additional information about the deleted record.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "Unique identifier of the deleted record.",
                      "format": "int64"
                    }
                  },
                  "required": [
                    "id"
                  ],
                  "additionalProperties": true
                }
              },
              "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)
