> ## 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 mass convert job status. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Get mass convert job status.

<Info>
  Tool ID: `zoho_crm_mass_convert_get_job_status`
</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_mass_convert_get_job_status',
  {
    "job_id": "job_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_mass_convert_get_job_status --input '{
  "job_id": "job_123"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "data": [
      {
        "Status": "example",
        "Total_Count": 123,
        "Converted_Count": 123,
        "Not_Converted_Count": 123,
        "Failed_Count": 123
      }
    ]
  }
}
```

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

## Input reference

Retrieve the status and counts of a previously scheduled mass convert job using job\_id query parameter.

| Name             | Type     | Required | Default | Details                                                                      |
| ---------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------- |
| `payload.job_id` | `string` | Yes      | —       | Identifier of the mass convert job to fetch status for. Maximum length: 255. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve the status and counts of a previously scheduled mass convert job using job_id query parameter.",
    "properties": {
      "job_id": {
        "type": "string",
        "description": "Identifier of the mass convert job to fetch status for.",
        "maxLength": 255
      }
    },
    "required": [
      "job_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                     | Type      | Required | Default | Details                                                                                                       |
| ---------------------------------------- | --------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------- |
| `result.data`                            | `object`  | Yes      | —       | Successful job status response wrapper containing an array of job status objects.                             |
| `result.data.data`                       | `array`   | Yes      | —       | Array containing job status objects. Maximum items: 5.                                                        |
| `result.data.data[].Status`              | `string`  | Yes      | —       | Indicates the status of the mass convert job (completed, scheduled, in progress, failed). Maximum length: 50. |
| `result.data.data[].Total_Count`         | `integer` | Yes      | —       | Specifies the total number of leads that were scheduled to be converted. Format: `int32`.                     |
| `result.data.data[].Converted_Count`     | `integer` | Yes      | —       | Specifies the number of leads that were converted. Format: `int32`.                                           |
| `result.data.data[].Not_Converted_Count` | `integer` | Yes      | —       | Specifies the number of leads that are yet to be converted. Format: `int32`.                                  |
| `result.data.data[].Failed_Count`        | `integer` | Yes      | —       | Specifies the number of leads that were not converted. Format: `int32`.                                       |
| `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": "Successful job status response wrapper containing an array of job status objects.",
        "properties": {
          "data": {
            "type": "array",
            "description": "Array containing job status objects.",
            "maxItems": 5,
            "items": {
              "type": "object",
              "description": "Status details for a job or batch entry.",
              "properties": {
                "Status": {
                  "type": "string",
                  "description": "Indicates the status of the mass convert job (completed, scheduled, in progress, failed).",
                  "maxLength": 50
                },
                "Total_Count": {
                  "type": "integer",
                  "description": "Specifies the total number of leads that were scheduled to be converted.",
                  "format": "int32"
                },
                "Converted_Count": {
                  "type": "integer",
                  "description": "Specifies the number of leads that were converted.",
                  "format": "int32"
                },
                "Not_Converted_Count": {
                  "type": "integer",
                  "description": "Specifies the number of leads that are yet to be converted.",
                  "format": "int32"
                },
                "Failed_Count": {
                  "type": "integer",
                  "description": "Specifies the number of leads that were not converted.",
                  "format": "int32"
                }
              },
              "required": [
                "Status",
                "Total_Count",
                "Converted_Count",
                "Not_Converted_Count",
                "Failed_Count"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "data"
        ],
        "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)
