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

Get status of mass delete job.

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

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_mass_delete_tags_get_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": {
    "mass_delete": [
      {
        "job_id": "job_123",
        "status": "example"
      }
    ]
  }
}
```

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

## Input reference

Retrieve the status of a scheduled mass delete job using its job\_id

| Name             | Type     | Required | Default | Details                                                                          |
| ---------------- | -------- | -------- | ------- | -------------------------------------------------------------------------------- |
| `payload.job_id` | `string` | Yes      | —       | Unique identifier returned by the mass delete tags launcher. Maximum length: 50. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve the status of a scheduled mass delete job using its job_id",
    "properties": {
      "job_id": {
        "type": "string",
        "description": "Unique identifier returned by the mass delete tags launcher.",
        "maxLength": 50
      }
    },
    "required": [
      "job_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                     | Type     | Required | Default | Details                                                                             |
| ---------------------------------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------- |
| `result.data`                            | `object` | Yes      | —       | Schema for mass delete job status response                                          |
| `result.data.mass_delete`                | `array`  | Yes      | —       | List of mass delete jobs with their current status Maximum items: 100.              |
| `result.data.mass_delete[].job_id`       | `string` | Yes      | —       | Unique identifier of the mass delete job Maximum length: 50.                        |
| `result.data.mass_delete[].status`       | `string` | Yes      | —       | Returns the status and summary of the requested mass delete job Maximum length: 20. |
| `result.data.mass_delete[].created_time` | `string` | No       | —       | Response schema for mass delete job creation Format: `date-time`.                   |
| `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": "Schema for mass delete job status response",
        "properties": {
          "mass_delete": {
            "type": "array",
            "description": "List of mass delete jobs with their current status",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "Single mass delete job information",
              "properties": {
                "job_id": {
                  "type": "string",
                  "description": "Unique identifier of the mass delete job",
                  "maxLength": 50
                },
                "status": {
                  "type": "string",
                  "description": "Returns the status and summary of the requested mass delete job",
                  "maxLength": 20
                },
                "created_time": {
                  "type": "string",
                  "description": "Response schema for mass delete job creation",
                  "format": "date-time"
                }
              },
              "required": [
                "job_id",
                "status"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "mass_delete"
        ],
        "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)
