> ## 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 a specific holiday. Includes SDK V2 and CLI requests, input constraints, response fields, and Deepline credit cost.

Delete a specific holiday.

<Info>
  Tool ID: `zoho_crm_holidays_delete_holiday`
</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_holidays_delete_holiday --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "holidays": [
      {
        "code": "SUCCESS",
        "details": {
          "id": "id_123"
        },
        "message": "Example message",
        "status": "success"
      }
    ]
  }
}
```

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

## Input reference

Permanently deletes a specific holiday identified by its ID. This operation is irreversible. Ensure the holiday ID is valid before deletion to avoid errors.

| Name                | Type     | Required | Default | Details                                                                                                                                  |
| ------------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.holidayId` | `string` | Yes      | —       | Unique identifier of the holiday. Must be a valid numeric string identifier. Minimum length: 1. Maximum length: 30. Pattern: `^[0-9]+$`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Permanently deletes a specific holiday identified by its ID. This operation is irreversible. Ensure the holiday ID is valid before deletion to avoid errors.",
    "properties": {
      "holidayId": {
        "type": "string",
        "description": "Unique identifier of the holiday. Must be a valid numeric string identifier.",
        "minLength": 1,
        "maxLength": 30,
        "pattern": "^[0-9]+$"
      }
    },
    "required": [
      "holidayId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                | Type        | Required | Default | Details                                                   |
| ----------------------------------- | ----------- | -------- | ------- | --------------------------------------------------------- |
| `result.data`                       | `object`    | Yes      | —       | The Holidayssuccessresponse of the object.                |
| `result.data.holidays`              | `array`     | Yes      | —       | The Holidays of the object. Maximum items: 100.           |
| `result.data.holidays[].code`       | `"SUCCESS"` | Yes      | —       | The Code of the object. Allowed: `SUCCESS`.               |
| `result.data.holidays[].details`    | `object`    | Yes      | —       | The Details of the object.                                |
| `result.data.holidays[].details.id` | `string`    | No       | —       | The unique identifier of the holiday Maximum length: 255. |
| `result.data.holidays[].message`    | `string`    | Yes      | —       | The Message of the object. Maximum length: 255.           |
| `result.data.holidays[].status`     | `"success"` | Yes      | —       | The Status of the object. Allowed: `success`.             |
| `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": "The Holidayssuccessresponse of the object.",
        "properties": {
          "holidays": {
            "type": "array",
            "description": "The Holidays of the object.",
            "maxItems": 100,
            "items": {
              "type": "object",
              "description": "The Item of the object.",
              "properties": {
                "code": {
                  "type": "string",
                  "description": "The Code of the object.",
                  "enum": [
                    "SUCCESS"
                  ]
                },
                "details": {
                  "type": "object",
                  "description": "The Details of the object.",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The unique identifier of the holiday",
                      "maxLength": 255
                    }
                  },
                  "additionalProperties": false
                },
                "message": {
                  "type": "string",
                  "description": "The Message of the object.",
                  "maxLength": 255
                },
                "status": {
                  "type": "string",
                  "description": "The Status of the object.",
                  "enum": [
                    "success"
                  ]
                }
              },
              "required": [
                "code",
                "details",
                "message",
                "status"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "holidays"
        ],
        "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)
