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

> Retrieve organization-level enrichment data by enrichment ID. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Retrieve organization-level enrichment data by enrichment ID.

<Info>
  Tool ID: `zoho_crm_zia_org_enrichment_get_org_enrichment_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_zia_org_enrichment_get_org_enrichment_by_id',
  {
    "id": "id_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_zia_org_enrichment_get_org_enrichment_by_id --input '{
  "id": "id_123"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "__zia_org_enrichment": [
      {
        "id": "id_123",
        "status": "COMPLETED",
        "enrich_based_on": {
          "name": "Example",
          "email": "jane.doe@example.com",
          "website": "https://example.com"
        },
        "enriched_data": {}
      }
    ]
  }
}
```

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

## Input reference

Fetches the enrichment status and enriched organization data for a specific enrichment job using its unique ID. Returns completed, scheduled, or failed enrichment information along with enriched fields such as name, website, email, address, CEO, revenue, employees, social media, and industries.

| Name         | Type     | Required | Default | Details                                                                     |
| ------------ | -------- | -------- | ------- | --------------------------------------------------------------------------- |
| `payload.id` | `string` | Yes      | —       | The unique identifier of the Zia Org Enrichment record Maximum length: 255. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetches the enrichment status and enriched organization data for a specific enrichment job using its unique ID. Returns completed, scheduled, or failed enrichment information along with enriched fields such as name, website, email, address, CEO, revenue, employees, social media, and industries.",
    "properties": {
      "id": {
        "type": "string",
        "description": "The unique identifier of the Zia Org Enrichment record",
        "maxLength": 255
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                         | Type                                                         | Required | Default | Details                                                                                          |
| ------------------------------------------------------------ | ------------------------------------------------------------ | -------- | ------- | ------------------------------------------------------------------------------------------------ |
| `result.data`                                                | `object`                                                     | Yes      | —       | Organization level enrichment data fectched Successfully                                         |
| `result.data.__zia_org_enrichment`                           | `array`                                                      | Yes      | —       | List of organization enrichment results. Maximum items: 1.                                       |
| `result.data.__zia_org_enrichment[].id`                      | `string`                                                     | Yes      | —       | Unique ID for the enrichment record. Maximum length: 19.                                         |
| `result.data.__zia_org_enrichment[].status`                  | `"COMPLETED" \| "SCHEDULED" \| "FAILED" \| "DATA_NOT_FOUND"` | Yes      | —       | Status of the enrichment process. Allowed: `COMPLETED`, `SCHEDULED`, `FAILED`, `DATA_NOT_FOUND`. |
| `result.data.__zia_org_enrichment[].enrich_based_on`         | `object`                                                     | Yes      | —       | Input fields used for triggering enrichment.                                                     |
| `result.data.__zia_org_enrichment[].enrich_based_on.name`    | `string`                                                     | No       | —       | Organization name used for enrichment Maximum length: 255.                                       |
| `result.data.__zia_org_enrichment[].enrich_based_on.email`   | `string`                                                     | No       | —       | Email used for enrichment Format: `email`. Maximum length: 255.                                  |
| `result.data.__zia_org_enrichment[].enrich_based_on.website` | `string`                                                     | No       | —       | Website used for enrichment Maximum length: 255.                                                 |
| `result.data.__zia_org_enrichment[].enriched_data`           | `object \| null`                                             | Yes      | —       | contains dynamic properties which should be configured from the configuration settings           |
| `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": "Organization level enrichment data fectched Successfully",
        "properties": {
          "__zia_org_enrichment": {
            "type": "array",
            "description": "List of organization enrichment results.",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Organization enrichment result object.",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Unique ID for the enrichment record.",
                  "maxLength": 19
                },
                "status": {
                  "type": "string",
                  "description": "Status of the enrichment process.",
                  "enum": [
                    "COMPLETED",
                    "SCHEDULED",
                    "FAILED",
                    "DATA_NOT_FOUND"
                  ]
                },
                "enrich_based_on": {
                  "type": "object",
                  "description": "Input fields used for triggering enrichment.",
                  "properties": {
                    "name": {
                      "type": "string",
                      "description": "Organization name used for enrichment",
                      "maxLength": 255
                    },
                    "email": {
                      "type": "string",
                      "description": "Email used for enrichment",
                      "maxLength": 255,
                      "format": "email"
                    },
                    "website": {
                      "type": "string",
                      "description": "Website used for enrichment",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "enriched_data": {
                  "type": [
                    "object",
                    "null"
                  ],
                  "description": "contains dynamic properties which should be configured from the configuration settings",
                  "additionalProperties": true
                }
              },
              "required": [
                "id",
                "status",
                "enrich_based_on",
                "enriched_data"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "__zia_org_enrichment"
        ],
        "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)
