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

> Unblock single email. Zoho CRM Unblock Email Unblock Email By Id reference includes SDK V2 and CLI requests, input constraints, response fields, and Deepline.

Unblock single email.

<Info>
  Tool ID: `zoho_crm_unblock_email_unblock_email_by_id`
</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_unblock_email_unblock_email_by_id',
  {
    "module": "Leads",
    "id": "id_123",
    "unblock_fields": [
      "Email"
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_unblock_email_unblock_email_by_id --input '{
  "module": "Leads",
  "id": "id_123",
  "unblock_fields": [
    "Email"
  ]
}' --json
```

## Example response

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

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

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

## Input reference

Request body for unblocking email for a single record

| Name                     | Type      | Required | Default | Details                                         |
| ------------------------ | --------- | -------- | ------- | ----------------------------------------------- |
| `payload.module`         | `"Leads"` | Yes      | —       | The module name (e.g., Leads) Allowed: `Leads`. |
| `payload.id`             | `string`  | Yes      | —       | The record ID Maximum length: 50.               |
| `payload.unblock_fields` | `array`   | Yes      | —       | Fields to unblock Maximum items: 1.             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Request body for unblocking email for a single record",
    "properties": {
      "module": {
        "type": "string",
        "description": "The module name (e.g., Leads)",
        "enum": [
          "Leads"
        ]
      },
      "id": {
        "type": "string",
        "description": "The record ID",
        "maxLength": 50
      },
      "unblock_fields": {
        "type": "array",
        "description": "Fields to unblock",
        "maxItems": 1,
        "items": {
          "type": "string",
          "description": "Field name to unblock",
          "enum": [
            "Email"
          ]
        }
      }
    },
    "required": [
      "module",
      "id",
      "unblock_fields"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                     | Type        | Required | Default | Details                                          |
| ------------------------ | ----------- | -------- | ------- | ------------------------------------------------ |
| `result.data`            | `object`    | Yes      | —       | Response object for single record email unblock  |
| `result.data.code`       | `"SUCCESS"` | Yes      | —       | Status code of the operation Allowed: `SUCCESS`. |
| `result.data.details`    | `object`    | Yes      | —       | Details of the unblocked record                  |
| `result.data.details.id` | `string`    | Yes      | —       | ID of the unblocked record Maximum length: 50.   |
| `result.data.message`    | `string`    | Yes      | —       | Response message Maximum length: 255.            |
| `result.data.status`     | `string`    | Yes      | —       | Status of the operation Maximum length: 255.     |
| `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 object for single record email unblock",
        "properties": {
          "code": {
            "type": "string",
            "description": "Status code of the operation",
            "enum": [
              "SUCCESS"
            ]
          },
          "details": {
            "type": "object",
            "description": "Details of the unblocked record",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID of the unblocked record",
                "maxLength": 50
              }
            },
            "required": [
              "id"
            ],
            "additionalProperties": false
          },
          "message": {
            "type": "string",
            "description": "Response message",
            "maxLength": 255
          },
          "status": {
            "type": "string",
            "description": "Status of the operation",
            "maxLength": 255
          }
        },
        "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)
