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

> Empty the recycle bin. Zoho CRM Recycle Bin Empty Recycle Bin reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline.

Empty the recycle bin.

<Info>
  Tool ID: `zoho_crm_recycle_bin_empty_recycle_bin`
</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_recycle_bin_empty_recycle_bin',
  {},
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_recycle_bin_empty_recycle_bin --input '{}' --json
```

## Example response

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

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

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

## Input reference

Permanently deletes all records from the Recycle Bin. This action is irreversible, as deleted records cannot be restored after this operation. When the number of records in the Recycle Bin exceeds 1000 (including child records), the deletion will be scheduled as a background job (202 status). If the count is 1000 or fewer, the records are deleted immediately (200 status). Only users with the Admin profile can empty the Recycle Bin.

This action does not require input fields.

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Permanently deletes all records from the Recycle Bin. This action is irreversible, as deleted records cannot be restored after this operation. When the number of records in the Recycle Bin exceeds 1000 (including child records), the deletion will be scheduled as a background job (202 status). If the count is 1000 or fewer, the records are deleted immediately (200 status). Only users with the Admin profile can empty the Recycle Bin.",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                  | Type        | Required | Default | Details                                              |
| --------------------- | ----------- | -------- | ------- | ---------------------------------------------------- |
| `result.data`         | `object`    | Yes      | —       | Success response for empty recycle bin operation     |
| `result.data.code`    | `"SUCCESS"` | Yes      | —       | Result code Allowed: `SUCCESS`. Maximum length: 100. |
| `result.data.details` | `record`    | Yes      | —       | Additional details                                   |
| `result.data.message` | `string`    | Yes      | —       | Success message Maximum length: 500.                 |
| `result.data.status`  | `"success"` | Yes      | —       | Operation status Allowed: `success`.                 |
| `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 empty recycle bin operation",
        "properties": {
          "code": {
            "type": "string",
            "description": "Result code",
            "maxLength": 100,
            "enum": [
              "SUCCESS"
            ]
          },
          "details": {
            "type": "object",
            "description": "Additional details",
            "additionalProperties": true
          },
          "message": {
            "type": "string",
            "description": "Success message",
            "maxLength": 500
          },
          "status": {
            "type": "string",
            "description": "Operation status",
            "enum": [
              "success"
            ]
          }
        },
        "required": [
          "code",
          "details",
          "message",
          "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)
