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

> DELETE /settings/automation/tasks. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

DELETE /settings/automation/tasks.

<Info>
  Tool ID: `zoho_crm_workflow_tasks_delete_tasks`
</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_workflow_tasks_delete_tasks',
  {
    "ids": 1234567
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_workflow_tasks_delete_tasks --input '{
  "ids": 1234567
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "tasks": [
      {
        "code": "example",
        "details": {
          "resource_path_index": "example",
          "id": "id_123"
        },
        "message": "Example message"
      }
    ]
  }
}
```

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

## Input reference

To delete automation tasks configured in your Zoho CRM account.

| Name          | Type      | Required | Default | Details                                                                                                                                                                                                                                |
| ------------- | --------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.ids` | `1234567` | Yes      | —       | It represents the unique ID of the task that you want to delete. Skip this parameter if you have specified the ID in the request URL. You can pass upto 10 comma-separated IDs in this parameter. Allowed: `1234567`. Format: `int32`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "To delete automation tasks configured in your Zoho CRM account.",
    "properties": {
      "ids": {
        "type": "integer",
        "description": "It represents the unique ID of the task that you want to delete. Skip this parameter if you have specified the ID in the request URL. You can pass upto 10 comma-separated IDs in this parameter.",
        "enum": [
          1234567
        ],
        "format": "int32"
      }
    },
    "required": [
      "ids"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                              | Type     | Required | Default | Details                                           |
| ------------------------------------------------- | -------- | -------- | ------- | ------------------------------------------------- |
| `result.data`                                     | `object` | Yes      | —       | Success Case                                      |
| `result.data.tasks`                               | `array`  | No       | —       | Field: tasks Maximum items: 3.                    |
| `result.data.tasks[].code`                        | `string` | No       | —       | Field: code Maximum length: 255.                  |
| `result.data.tasks[].details`                     | `object` | No       | —       | Nested schema for details                         |
| `result.data.tasks[].details.resource_path_index` | `string` | No       | —       | Field: resource\_path\_index Maximum length: 255. |
| `result.data.tasks[].details.id`                  | `string` | No       | —       | Field: id Maximum length: 255.                    |
| `result.data.tasks[].message`                     | `string` | No       | —       | Field: message Maximum length: 255.               |
| `result.data.tasks[].status`                      | `string` | No       | —       | Field: status Maximum length: 255.                |
| `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": "Success Case",
        "properties": {
          "tasks": {
            "type": "array",
            "description": "Field: tasks",
            "maxItems": 3,
            "items": {
              "type": "object",
              "description": "Nested schema for tasks",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Field: code",
                  "maxLength": 255
                },
                "details": {
                  "type": "object",
                  "description": "Nested schema for details",
                  "properties": {
                    "resource_path_index": {
                      "type": "string",
                      "description": "Field: resource_path_index",
                      "maxLength": 255
                    },
                    "id": {
                      "type": "string",
                      "description": "Field: id",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "Field: message",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "Field: status",
                  "maxLength": 255
                }
              },
              "additionalProperties": false
            }
          }
        },
        "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)
