> ## 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 Zia Org Enrichment. Zoho CRM Zia Org Enrichment Get Zia Org Enrichment reference includes SDK V2 and CLI requests, input constraints, response fields,.

Get Zia Org Enrichment.

<Info>
  Tool ID: `zoho_crm_zia_org_enrichment_get_zia_org_enrichment`
</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_zia_org_enrichment',
  {
    "page": 1,
    "per_page": 100,
    "sort_by": "created_time"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_zia_org_enrichment_get_zia_org_enrichment --input '{
  "page": 1,
  "per_page": 100,
  "sort_by": "created_time"
}' --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": "SCHEDULED",
        "created_time": "2026-01-15T12:00:00Z",
        "created_by": {
          "id": "id_123",
          "name": "Example"
        }
      }
    ],
    "info": {
      "per_page": 100,
      "count": 100,
      "page": 123,
      "more_records": true
    }
  }
}
```

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

## Input reference

Retrieve the Zia Org Enrichment records with pagination and filtering options

| Name                 | Type                                                         | Required | Default | Details                                                                                             |
| -------------------- | ------------------------------------------------------------ | -------- | ------- | --------------------------------------------------------------------------------------------------- |
| `payload.page`       | `1 \| 2`                                                     | No       | —       | The page number for pagination. Allowed: `1`, `2`. Format: `int32`.                                 |
| `payload.per_page`   | `100`                                                        | No       | —       | Number of records per page. Allowed: `100`. Format: `int32`.                                        |
| `payload.sort_by`    | `"created_time"`                                             | No       | —       | Field to sort by. Allowed: `created_time`.                                                          |
| `payload.sort_order` | `"asc" \| "desc"`                                            | No       | —       | Sort order (ascending or descending). Allowed: `asc`, `desc`.                                       |
| `payload.status`     | `"COMPLETED" \| "FAILED" \| "DATA_NOT_FOUND" \| "SCHEDULED"` | No       | —       | Filter records by enrichment status. Allowed: `COMPLETED`, `FAILED`, `DATA_NOT_FOUND`, `SCHEDULED`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve the Zia Org Enrichment records with pagination and filtering options",
    "properties": {
      "page": {
        "type": "integer",
        "description": "The page number for pagination.",
        "enum": [
          1,
          2
        ],
        "format": "int32"
      },
      "per_page": {
        "type": "integer",
        "description": "Number of records per page.",
        "enum": [
          100
        ],
        "format": "int32"
      },
      "sort_by": {
        "type": "string",
        "description": "Field to sort by.",
        "enum": [
          "created_time"
        ]
      },
      "sort_order": {
        "type": "string",
        "description": "Sort order (ascending or descending).",
        "enum": [
          "asc",
          "desc"
        ]
      },
      "status": {
        "type": "string",
        "description": "Filter records by enrichment status.",
        "enum": [
          "COMPLETED",
          "FAILED",
          "DATA_NOT_FOUND",
          "SCHEDULED"
        ]
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                 | Type                                                         | Required | Default | Details                                                                                     |
| ---------------------------------------------------- | ------------------------------------------------------------ | -------- | ------- | ------------------------------------------------------------------------------------------- |
| `result.data`                                        | `object`                                                     | Yes      | —       | Response wrapper for organization enrichment jobs list                                      |
| `result.data.__zia_org_enrichment`                   | `array`                                                      | Yes      | —       | Array of organization enrichment jobs Maximum items: 100.                                   |
| `result.data.__zia_org_enrichment[].id`              | `string`                                                     | Yes      | —       | Enrichment job ID Maximum length: 19.                                                       |
| `result.data.__zia_org_enrichment[].status`          | `"SCHEDULED" \| "COMPLETED" \| "DATA_NOT_FOUND" \| "FAILED"` | Yes      | —       | Status of the enrichment job Allowed: `SCHEDULED`, `COMPLETED`, `DATA_NOT_FOUND`, `FAILED`. |
| `result.data.__zia_org_enrichment[].created_time`    | `string`                                                     | Yes      | —       | Job creation timestamp Format: `date-time`.                                                 |
| `result.data.__zia_org_enrichment[].created_by`      | `object`                                                     | Yes      | —       | User who triggered the enrichment job                                                       |
| `result.data.__zia_org_enrichment[].created_by.id`   | `string`                                                     | Yes      | —       | User ID who triggered the job Maximum length: 19.                                           |
| `result.data.__zia_org_enrichment[].created_by.name` | `string`                                                     | Yes      | —       | Name of the user Maximum length: 255.                                                       |
| `result.data.info`                                   | `object`                                                     | Yes      | —       | Pagination information                                                                      |
| `result.data.info.per_page`                          | `100`                                                        | Yes      | —       | Number of records per page Format: `int32`.                                                 |
| `result.data.info.count`                             | `integer`                                                    | Yes      | —       | Total number of records Format: `int32`. Maximum: 100.                                      |
| `result.data.info.page`                              | `integer`                                                    | Yes      | —       | Current page number Format: `int32`.                                                        |
| `result.data.info.more_records`                      | `boolean`                                                    | Yes      | —       | Indicates if more records exist                                                             |
| `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 wrapper for organization enrichment jobs list",
        "properties": {
          "__zia_org_enrichment": {
            "type": "array",
            "description": "Array of organization enrichment jobs",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "Organization enrichment job object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "Enrichment job ID",
                  "maxLength": 19
                },
                "status": {
                  "type": "string",
                  "description": "Status of the enrichment job",
                  "enum": [
                    "SCHEDULED",
                    "COMPLETED",
                    "DATA_NOT_FOUND",
                    "FAILED"
                  ]
                },
                "created_time": {
                  "type": "string",
                  "description": "Job creation timestamp",
                  "format": "date-time"
                },
                "created_by": {
                  "type": "object",
                  "description": "User who triggered the enrichment job",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "User ID who triggered the job",
                      "maxLength": 19
                    },
                    "name": {
                      "type": "string",
                      "description": "Name of the user",
                      "maxLength": 255
                    }
                  },
                  "required": [
                    "id",
                    "name"
                  ],
                  "additionalProperties": false
                }
              },
              "required": [
                "id",
                "status",
                "created_time",
                "created_by"
              ],
              "additionalProperties": false
            }
          },
          "info": {
            "type": "object",
            "description": "Pagination information",
            "properties": {
              "per_page": {
                "type": "integer",
                "description": "Number of records per page",
                "const": 100,
                "format": "int32"
              },
              "count": {
                "type": "integer",
                "description": "Total number of records",
                "maximum": 100,
                "format": "int32"
              },
              "page": {
                "type": "integer",
                "description": "Current page number",
                "format": "int32"
              },
              "more_records": {
                "type": "boolean",
                "description": "Indicates if more records exist"
              }
            },
            "required": [
              "per_page",
              "count",
              "page",
              "more_records"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "__zia_org_enrichment",
          "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)
