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

> Schedule mass delete tags job. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Schedule mass delete tags job.

<Info>
  Tool ID: `zoho_crm_mass_delete_tags_create_mass_delete_tags`
</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_create_mass_delete_tags',
  {
    "mass_delete": [
      {
        "module": {
          "api_name": "Example",
          "id": "id_123"
        },
        "tags": [
          {
            "id": "id_123"
          }
        ]
      }
    ]
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_mass_delete_tags_create_mass_delete_tags --input '{
  "mass_delete": [
    {
      "module": {
        "api_name": "Example",
        "id": "id_123"
      },
      "tags": [
        {
          "id": "id_123"
        }
      ]
    }
  ]
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "status": "example",
    "code": "example",
    "details": {
      "job_id": "job_123"
    }
  }
}
```

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

## Input reference

Schema for scheduling mass delete tags job

| Name                  | Type    | Required | Default | Details                                                               |
| --------------------- | ------- | -------- | ------- | --------------------------------------------------------------------- |
| `payload.mass_delete` | `array` | Yes      | —       | Array of modules and corresponding tags to delete Maximum items: 100. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Schema for scheduling mass delete tags job",
    "properties": {
      "mass_delete": {
        "type": "array",
        "description": "Array of modules and corresponding tags to delete",
        "maxItems": 100,
        "items": {
          "type": "object",
          "description": "Module and tags information",
          "properties": {
            "module": {
              "type": "object",
              "description": "Module in which tags need to be deleted",
              "properties": {
                "api_name": {
                  "type": "string",
                  "description": "API for mass deletion of tags in Zoho CRM. This endpoint allows administrators to delete multiple tags across modules in bulk.",
                  "maxLength": 50
                },
                "id": {
                  "type": "string",
                  "description": "Unique identifier of the mass delete job",
                  "maxLength": 50
                }
              },
              "required": [
                "api_name",
                "id"
              ],
              "additionalProperties": false
            },
            "tags": {
              "type": "array",
              "description": "List of tags to be deleted in the module",
              "maxItems": 100,
              "items": {
                "type": "object",
                "description": "Tag information",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "API for mass deletion of tags in Zoho CRM. This endpoint allows administrators to delete multiple tags across modules in bulk.",
                    "maxLength": 50
                  },
                  "name": {
                    "type": "string",
                    "description": "tag name",
                    "maxLength": 50
                  }
                },
                "required": [
                  "id"
                ],
                "additionalProperties": false
              }
            }
          },
          "required": [
            "module",
            "tags"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "mass_delete"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                         | Type     | Required | Default | Details                                                                |
| ---------------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------- |
| `result.data`                | `object` | Yes      | —       | Response schema for mass delete job creation                           |
| `result.data.status`         | `string` | Yes      | —       | Indicates the success status of the request Maximum length: 20.        |
| `result.data.code`           | `string` | Yes      | —       | status code Maximum length: 10.                                        |
| `result.data.details`        | `object` | Yes      | —       | Details of the scheduled job                                           |
| `result.data.details.job_id` | `string` | Yes      | —       | Unique identifier of the scheduled mass delete job Maximum length: 50. |
| `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 schema for mass delete job creation",
        "properties": {
          "status": {
            "type": "string",
            "description": "Indicates the success status of the request",
            "maxLength": 20
          },
          "code": {
            "type": "string",
            "description": "status code",
            "maxLength": 10
          },
          "details": {
            "type": "object",
            "description": "Details of the scheduled job",
            "properties": {
              "job_id": {
                "type": "string",
                "description": "Unique identifier of the scheduled mass delete job",
                "maxLength": 50
              }
            },
            "required": [
              "job_id"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "status",
          "code",
          "details"
        ],
        "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)
