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

> To delete a fieldupdate action. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

To delete a fieldupdate action.

<Info>
  Tool ID: `zoho_crm_field_updates_delete_field_update_by_id`
</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_field_updates_delete_field_update_by_id',
  {
    "id": "id_123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_field_updates_delete_field_update_by_id --input '{
  "id": "id_123"
}' --json
```

## Example response

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

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

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

## Input reference

To delete a field update action.

| Name         | Type     | Required | Default | Details                                                 |
| ------------ | -------- | -------- | ------- | ------------------------------------------------------- |
| `payload.id` | `string` | Yes      | —       | Field Update action id in url path Maximum length: 255. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "To delete a field update action.",
    "properties": {
      "id": {
        "type": "string",
        "description": "Field Update action id in url path",
        "maxLength": 255
      }
    },
    "required": [
      "id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                     | Type     | Required | Default | Details                                                   |
| ---------------------------------------- | -------- | -------- | ------- | --------------------------------------------------------- |
| `result.data`                            | `object` | Yes      | —       | Indicates that the field update was deleted successfully. |
| `result.data.field_updates`              | `array`  | No       | —       | Field: field\_updates Maximum items: 1.                   |
| `result.data.field_updates[].code`       | `string` | No       | —       | Field: code Maximum length: 255.                          |
| `result.data.field_updates[].details`    | `object` | No       | —       | Nested schema for details                                 |
| `result.data.field_updates[].details.id` | `string` | No       | —       | Field: id Maximum length: 255.                            |
| `result.data.field_updates[].message`    | `string` | No       | —       | Field: message Maximum length: 255.                       |
| `result.data.field_updates[].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": "Indicates that the field update was deleted successfully.",
        "properties": {
          "field_updates": {
            "type": "array",
            "description": "Field: field_updates",
            "maxItems": 1,
            "items": {
              "type": "object",
              "description": "Nested schema for field_updates",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "Field: code",
                  "maxLength": 255
                },
                "details": {
                  "type": "object",
                  "description": "Nested schema for details",
                  "properties": {
                    "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)
