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

> Retrieve business hours configuration. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Retrieve business hours configuration.

<Info>
  Tool ID: `zoho_crm_business_hours_get_business_hours`
</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_business_hours_get_business_hours',
  {},
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_business_hours_get_business_hours --input '{}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get zoho_crm_business_hours_get_business_hours --json` for the complete live contract.

## Input reference

Retrieves the current business hours configuration including working days, hours, and timezone.

This action does not require input fields.

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieves the current business hours configuration including working days, hours, and timezone.",
    "properties": {},
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                                         | Type                                                                                       | Required | Default | Details                                                                                                                                   |
| ------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `result.data`                                                | `object`                                                                                   | Yes      | —       | Business hours retrieval response                                                                                                         |
| `result.data.business_hours`                                 | `object`                                                                                   | Yes      | —       | Business hours configuration details                                                                                                      |
| `result.data.business_hours.week_starts_on`                  | `"Monday" \| "Tuesday" \| "Wednesday" \| "Thursday" \| "Friday" \| "Saturday" \| "Sunday"` | Yes      | —       | First day of the work week for the organization Allowed: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`.    |
| `result.data.business_hours.type`                            | `"24_by_7" \| "24_by_5" \| "custom"`                                                       | Yes      | —       | Business hours configuration type: 24/7 operation, 24/5 weekdays, or custom schedule Allowed: `24_by_7`, `24_by_5`, `custom`.             |
| `result.data.business_hours.id`                              | `string`                                                                                   | Yes      | —       | Unique identifier for this business hours configuration Maximum length: 255. Pattern: `^[0-9]+$`.                                         |
| `result.data.business_hours.timezone`                        | `string`                                                                                   | Yes      | —       | Timezone for business hours (IANA timezone identifier) Maximum length: 100.                                                               |
| `result.data.business_hours.business_days`                   | `array`                                                                                    | Yes      | —       | Days of the week when the organization operates Minimum items: 1. Maximum items: 7. Items must be unique.                                 |
| `result.data.business_hours.same_as_everyday`                | `boolean`                                                                                  | Yes      | —       | Indicates if business hours are the same every day (true) or vary by day (false)                                                          |
| `result.data.business_hours.daily_timing`                    | `array \| null`                                                                            | Yes      | —       | Default working hours applied to all business days (start and end time) Minimum items: 2. Maximum items: 2.                               |
| `result.data.business_hours.custom_timing`                   | `array \| null`                                                                            | Yes      | —       | Different business hours for different days when same\_as\_everyday is false Maximum items: 7.                                            |
| `result.data.business_hours.custom_timing[].days`            | `"Monday" \| "Tuesday" \| "Wednesday" \| "Thursday" \| "Friday" \| "Saturday" \| "Sunday"` | Yes      | —       | Specific day of the week for custom business hours Allowed: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`. |
| `result.data.business_hours.custom_timing[].business_timing` | `array`                                                                                    | Yes      | —       | Start and end time for business hours on this specific day Minimum items: 2. Maximum items: 2.                                            |
| `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": "Business hours retrieval response",
        "properties": {
          "business_hours": {
            "type": "object",
            "description": "Business hours configuration details",
            "properties": {
              "week_starts_on": {
                "type": "string",
                "description": "First day of the work week for the organization",
                "enum": [
                  "Monday",
                  "Tuesday",
                  "Wednesday",
                  "Thursday",
                  "Friday",
                  "Saturday",
                  "Sunday"
                ]
              },
              "type": {
                "type": "string",
                "description": "Business hours configuration type: 24/7 operation, 24/5 weekdays, or custom schedule",
                "enum": [
                  "24_by_7",
                  "24_by_5",
                  "custom"
                ]
              },
              "id": {
                "type": "string",
                "description": "Unique identifier for this business hours configuration",
                "maxLength": 255,
                "pattern": "^[0-9]+$"
              },
              "timezone": {
                "type": "string",
                "description": "Timezone for business hours (IANA timezone identifier)",
                "maxLength": 100
              },
              "business_days": {
                "type": "array",
                "description": "Days of the week when the organization operates",
                "minItems": 1,
                "maxItems": 7,
                "uniqueItems": true,
                "items": {
                  "type": "string",
                  "description": "Days of the week when the organization operates",
                  "enum": [
                    "Monday",
                    "Tuesday",
                    "Wednesday",
                    "Thursday",
                    "Friday",
                    "Saturday",
                    "Sunday"
                  ]
                }
              },
              "same_as_everyday": {
                "type": "boolean",
                "description": "Indicates if business hours are the same every day (true) or vary by day (false)"
              },
              "daily_timing": {
                "type": [
                  "array",
                  "null"
                ],
                "description": "Default working hours applied to all business days (start and end time)",
                "minItems": 2,
                "maxItems": 2,
                "items": {
                  "type": "string",
                  "description": "Time in HH:MM format (24-hour)",
                  "maxLength": 5,
                  "pattern": "^([0-1][0-9]|2[0-3]):[0-5][0-9]$"
                }
              },
              "custom_timing": {
                "type": [
                  "array",
                  "null"
                ],
                "description": "Different business hours for different days when same_as_everyday is false",
                "maxItems": 7,
                "items": {
                  "type": "object",
                  "description": "Different business hours for different days when same_as_everyday is false",
                  "properties": {
                    "days": {
                      "type": "string",
                      "description": "Specific day of the week for custom business hours",
                      "enum": [
                        "Monday",
                        "Tuesday",
                        "Wednesday",
                        "Thursday",
                        "Friday",
                        "Saturday",
                        "Sunday"
                      ]
                    },
                    "business_timing": {
                      "type": "array",
                      "description": "Start and end time for business hours on this specific day",
                      "minItems": 2,
                      "maxItems": 2,
                      "items": {
                        "type": "string",
                        "description": "Time in HH:MM format (24-hour)",
                        "maxLength": 5,
                        "pattern": "^([0-1][0-9]|2[0-3]):[0-5][0-9]$"
                      }
                    }
                  },
                  "required": [
                    "days",
                    "business_timing"
                  ],
                  "additionalProperties": false
                }
              }
            },
            "required": [
              "week_starts_on",
              "type",
              "id",
              "timezone",
              "business_days",
              "same_as_everyday",
              "daily_timing",
              "custom_timing"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "business_hours"
        ],
        "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)
