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

> Get a recycle bin record. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Get a recycle bin record.

<Info>
  Tool ID: `zoho_crm_recycle_bin_get_recycle_bin_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_recycle_bin_get_recycle_bin_record',
  {
    "recordId": "record_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_recycle_bin_get_recycle_bin_record --input '{
  "recordId": "record_123"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "recycle_bin": [
      {
        "display_name": "Example",
        "deleted_time": "2026-01-15T12:00:00Z",
        "owner": {
          "name": "Example",
          "id": "id_123"
        },
        "module": {
          "api_name": "Example",
          "id": "id_123"
        },
        "deleted_by": {
          "name": "Example",
          "id": "id_123"
        },
        "id": "id_123"
      }
    ],
    "info": {
      "per_page": 123,
      "count": 123,
      "page": 123,
      "more_records": true
    }
  }
}
```

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

## Input reference

Returns a single recycle-bin record identified by the path parameter `record_id`. The record\_id in the URL takes precedence over any filters or ids given in query parameters.

| Name               | Type     | Required | Default | Details                                                                |
| ------------------ | -------- | -------- | ------- | ---------------------------------------------------------------------- |
| `payload.recordId` | `string` | Yes      | —       | Identifier of the recycle-bin record to retrieve. Maximum length: 500. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Returns a single recycle-bin record identified by the path parameter `record_id`. The record_id in the URL takes precedence over any filters or ids given in query parameters.",
    "properties": {
      "recordId": {
        "type": "string",
        "description": "Identifier of the recycle-bin record to retrieve.",
        "maxLength": 500
      }
    },
    "required": [
      "recordId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                        | Type      | Required | Default | Details                                                           |
| ------------------------------------------- | --------- | -------- | ------- | ----------------------------------------------------------------- |
| `result.data`                               | `object`  | Yes      | —       | Property value                                                    |
| `result.data.recycle_bin`                   | `array`   | Yes      | —       | List of recycle bin records. Maximum items: 1.                    |
| `result.data.recycle_bin[].display_name`    | `string`  | Yes      | —       | Display name of the deleted record. Maximum length: 500.          |
| `result.data.recycle_bin[].deleted_time`    | `string`  | Yes      | —       | Timestamp when the record was deleted. Format: `date-time`.       |
| `result.data.recycle_bin[].owner`           | `object`  | Yes      | —       | Owner of the deleted record.                                      |
| `result.data.recycle_bin[].owner.name`      | `string`  | Yes      | —       | Owner's name. Maximum length: 255.                                |
| `result.data.recycle_bin[].owner.id`        | `string`  | Yes      | —       | Owner's identifier. Maximum length: 100.                          |
| `result.data.recycle_bin[].module`          | `object`  | Yes      | —       | Module information of the deleted record.                         |
| `result.data.recycle_bin[].module.api_name` | `string`  | Yes      | —       | API name of the module. Maximum length: 100.                      |
| `result.data.recycle_bin[].module.id`       | `string`  | Yes      | —       | Module identifier. Maximum length: 100.                           |
| `result.data.recycle_bin[].deleted_by`      | `object`  | Yes      | —       | User who deleted the record.                                      |
| `result.data.recycle_bin[].deleted_by.name` | `string`  | Yes      | —       | Name of the user who deleted. Maximum length: 255.                |
| `result.data.recycle_bin[].deleted_by.id`   | `string`  | Yes      | —       | Identifier of the user who deleted. Maximum length: 100.          |
| `result.data.recycle_bin[].id`              | `string`  | Yes      | —       | Unique identifier of the recycle bin record. Maximum length: 100. |
| `result.data.info`                          | `object`  | Yes      | —       | Pagination and count information.                                 |
| `result.data.info.per_page`                 | `integer` | Yes      | —       | Number of records per page. Format: `int32`.                      |
| `result.data.info.count`                    | `integer` | Yes      | —       | Total number of records returned. Format: `int32`.                |
| `result.data.info.page`                     | `integer` | Yes      | —       | Current page number. Format: `int32`.                             |
| `result.data.info.more_records`             | `boolean` | Yes      | —       | Indicates if more records are available.                          |
| `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": "Property value",
        "properties": {
          "recycle_bin": {
            "type": "array",
            "description": "List of recycle bin records.",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Individual recycle bin record.",
              "properties": {
                "display_name": {
                  "type": "string",
                  "description": "Display name of the deleted record.",
                  "maxLength": 500
                },
                "deleted_time": {
                  "type": "string",
                  "description": "Timestamp when the record was deleted.",
                  "format": "date-time"
                },
                "owner": {
                  "type": "object",
                  "description": "Owner of the deleted record.",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "Owner's name.",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "Owner's identifier.",
                      "maxLength": 100
                    }
                  },
                  "required": [
                    "name",
                    "id"
                  ],
                  "additionalProperties": false
                },
                "module": {
                  "type": "object",
                  "description": "Module information of the deleted record.",
                  "properties": {
                    "api_name": {
                      "type": "string",
                      "description": "API name of the module.",
                      "maxLength": 100
                    },
                    "id": {
                      "type": "string",
                      "description": "Module identifier.",
                      "maxLength": 100
                    }
                  },
                  "required": [
                    "api_name",
                    "id"
                  ],
                  "additionalProperties": false
                },
                "deleted_by": {
                  "type": "object",
                  "description": "User who deleted the record.",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "Name of the user who deleted.",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "Identifier of the user who deleted.",
                      "maxLength": 100
                    }
                  },
                  "required": [
                    "name",
                    "id"
                  ],
                  "additionalProperties": false
                },
                "id": {
                  "type": "string",
                  "description": "Unique identifier of the recycle bin record.",
                  "maxLength": 100
                }
              },
              "required": [
                "display_name",
                "deleted_time",
                "owner",
                "module",
                "deleted_by",
                "id"
              ],
              "additionalProperties": false
            }
          },
          "info": {
            "type": "object",
            "description": "Pagination and count information.",
            "properties": {
              "per_page": {
                "type": "integer",
                "description": "Number of records per page.",
                "format": "int32"
              },
              "count": {
                "type": "integer",
                "description": "Total number of records returned.",
                "format": "int32"
              },
              "page": {
                "type": "integer",
                "description": "Current page number.",
                "format": "int32"
              },
              "more_records": {
                "type": "boolean",
                "description": "Indicates if more records are available."
              }
            },
            "required": [
              "per_page",
              "count",
              "page",
              "more_records"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "recycle_bin",
          "info"
        ],
        "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)
