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

> Check mass change owner job status. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Check mass change owner job status.

<Info>
  Tool ID: `zoho_crm_mass_change_owner_check_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_change_owner_check_status',
  {
    "module": "example",
    "job_id": "job_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_mass_change_owner_check_status --input '{
  "module": "example",
  "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": "COMPLETED",
        "Failed_Count": 123,
        "Not_Updated_Count": 123,
        "Updated_Count": 123,
        "Total_Count": 123
      }
    ]
  }
}
```

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

## Input reference

Check the status of a mass change owner job using the job ID

| Name             | Type     | Required | Default | Details                                                                |
| ---------------- | -------- | -------- | ------- | ---------------------------------------------------------------------- |
| `payload.module` | `string` | Yes      | —       | The API name of the module Maximum length: 255.                        |
| `payload.job_id` | `string` | Yes      | —       | The unique identifier of the mass change owner job Maximum length: 19. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Check the status of a mass change owner job using the job ID",
    "properties": {
      "module": {
        "type": "string",
        "description": "The API name of the module",
        "maxLength": 255
      },
      "job_id": {
        "type": "string",
        "description": "The unique identifier of the mass change owner job",
        "maxLength": 19
      }
    },
    "required": [
      "module",
      "job_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                   | Type          | Required | Default | Details                                                  |
| -------------------------------------- | ------------- | -------- | ------- | -------------------------------------------------------- |
| `result.data`                          | `object`      | Yes      | —       | Response containing the job status details               |
| `result.data.data`                     | `array`       | Yes      | —       | Array of job status data Maximum items: 1.               |
| `result.data.data[].Status`            | `"COMPLETED"` | Yes      | —       | Current status of the job Allowed: `COMPLETED`.          |
| `result.data.data[].Failed_Count`      | `integer`     | Yes      | —       | Number of records that failed to update Format: `int32`. |
| `result.data.data[].Not_Updated_Count` | `integer`     | Yes      | —       | Number of records that were not updated Format: `int32`. |
| `result.data.data[].Updated_Count`     | `integer`     | Yes      | —       | Number of records successfully updated Format: `int32`.  |
| `result.data.data[].Total_Count`       | `integer`     | Yes      | —       | Total number of records processed 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": "Response containing the job status details",
        "properties": {
          "data": {
            "type": "array",
            "description": "Array of job status data",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Job status details",
              "properties": {
                "Status": {
                  "type": "string",
                  "description": "Current status of the job",
                  "enum": [
                    "COMPLETED"
                  ]
                },
                "Failed_Count": {
                  "type": "integer",
                  "description": "Number of records that failed to update",
                  "format": "int32"
                },
                "Not_Updated_Count": {
                  "type": "integer",
                  "description": "Number of records that were not updated",
                  "format": "int32"
                },
                "Updated_Count": {
                  "type": "integer",
                  "description": "Number of records successfully updated",
                  "format": "int32"
                },
                "Total_Count": {
                  "type": "integer",
                  "description": "Total number of records processed",
                  "format": "int32"
                }
              },
              "required": [
                "Status",
                "Failed_Count",
                "Not_Updated_Count",
                "Updated_Count",
                "Total_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)
