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

Retrieve mass delete job status.

<Info>
  Tool ID: `zoho_crm_mass_delete_cvid_get_mass_delete_job_status`
</Info>

## Run this action

This action has conditional or dynamic input fields that cannot be represented by a reliable static example.

Inspect the live contract before executing it:

```bash theme={null}
deepline tools get zoho_crm_mass_delete_cvid_get_mass_delete_job_status --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "data": [
      {
        "Status": "COMPLETED",
        "Total_Count": 123,
        "Deleted_Count": 123,
        "Failed_Count": 123
      }
    ]
  }
}
```

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

## Input reference

Get the status and results of a previously scheduled mass delete operation by job ID.

| Name             | Type                                                                                                                                                                                                                                                                                   | Required | Default | Details                                                                                                                                                                                                                                                                                                                                                                    |
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.module` | `"Leads" \| "Accounts" \| "Contacts" \| "Deals" \| "Campaigns" \| "Tasks" \| "Calls" \| "Meetings" \| "Cases" \| "Solutions" \| "Products" \| "Vendors" \| "Price_Books" \| "Quotes" \| "Sales_Orders" \| "Purchase_Orders" \| "Invoices" \| "Custom" \| "Services" \| "Appointments"` | Yes      | —       | Specifies the CRM module for the mass delete operation. Note: Module names are case-sensitive. Allowed: `Leads`, `Accounts`, `Contacts`, `Deals`, `Campaigns`, `Tasks`, `Calls`, `Meetings`, `Cases`, `Solutions`, `Products`, `Vendors`, `Price_Books`, `Quotes`, `Sales_Orders`, `Purchase_Orders`, `Invoices`, `Custom`, `Services`, `Appointments`. Minimum length: 1. |
| `payload.job_id` | `string`                                                                                                                                                                                                                                                                               | Yes      | —       | Job ID returned from the mass delete POST request. Format: `string`. Pattern: `^[0-9]+$`.                                                                                                                                                                                                                                                                                  |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Get the status and results of a previously scheduled mass delete operation by job ID.",
    "properties": {
      "module": {
        "type": "string",
        "description": "Specifies the CRM module for the mass delete operation. Note: Module names are case-sensitive.",
        "minLength": 1,
        "enum": [
          "Leads",
          "Accounts",
          "Contacts",
          "Deals",
          "Campaigns",
          "Tasks",
          "Calls",
          "Meetings",
          "Cases",
          "Solutions",
          "Products",
          "Vendors",
          "Price_Books",
          "Quotes",
          "Sales_Orders",
          "Purchase_Orders",
          "Invoices",
          "Custom",
          "Services",
          "Appointments"
        ]
      },
      "job_id": {
        "type": "string",
        "description": "Job ID returned from the mass delete POST request.",
        "pattern": "^[0-9]+$",
        "format": "string"
      }
    },
    "required": [
      "module",
      "job_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                               | Type                                                                             | Required | Default | Details                                                                                                               |
| ---------------------------------- | -------------------------------------------------------------------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------- |
| `result.data`                      | `object`                                                                         | Yes      | —       | Mass delete job status                                                                                                |
| `result.data.data`                 | `array`                                                                          | Yes      | —       | Mass delete job status Minimum items: 1. Maximum items: 1.                                                            |
| `result.data.data[].Status`        | `"COMPLETED" \| "SCHEDULED" \| "QUEUED" \| "RUNNING" \| "SUSPENDED" \| "FAILED"` | Yes      | —       | Current status of the mass delete job. Allowed: `COMPLETED`, `SCHEDULED`, `QUEUED`, `RUNNING`, `SUSPENDED`, `FAILED`. |
| `result.data.data[].Total_Count`   | `integer`                                                                        | Yes      | —       | Total number of records targeted for deletion. Format: `int32`. Minimum: 0.                                           |
| `result.data.data[].Deleted_Count` | `integer`                                                                        | Yes      | —       | Number of records successfully deleted. Format: `int32`. Minimum: 0.                                                  |
| `result.data.data[].Failed_Count`  | `integer`                                                                        | Yes      | —       | Number of records that failed to delete. Format: `int32`. Minimum: 0.                                                 |
| `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": "Mass delete job status",
        "properties": {
          "data": {
            "type": "array",
            "description": "Mass delete job status",
            "minItems": 1,
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Mass delete job status",
              "properties": {
                "Status": {
                  "type": "string",
                  "description": "Current status of the mass delete job.",
                  "enum": [
                    "COMPLETED",
                    "SCHEDULED",
                    "QUEUED",
                    "RUNNING",
                    "SUSPENDED",
                    "FAILED"
                  ]
                },
                "Total_Count": {
                  "type": "integer",
                  "description": "Total number of records targeted for deletion.",
                  "minimum": 0,
                  "format": "int32"
                },
                "Deleted_Count": {
                  "type": "integer",
                  "description": "Number of records successfully deleted.",
                  "minimum": 0,
                  "format": "int32"
                },
                "Failed_Count": {
                  "type": "integer",
                  "description": "Number of records that failed to delete.",
                  "minimum": 0,
                  "format": "int32"
                }
              },
              "required": [
                "Status",
                "Total_Count",
                "Deleted_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)
