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

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

Create business hours configuration.

<Info>
  Tool ID: `zoho_crm_business_hours_create_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_create_business_hours',
  {
    "business_hours": {
      "week_starts_on": "Monday",
      "type": "24_by_7"
    }
  },
);

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

### CLI

```bash theme={null}
deepline tools execute zoho_crm_business_hours_create_business_hours --input '{
  "business_hours": {
    "week_starts_on": "Monday",
    "type": "24_by_7"
  }
}' --json
```

## Example response

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

## Input reference

Business hours creation request body

| Name                     | Type     | Required | Default | Details                              |
| ------------------------ | -------- | -------- | ------- | ------------------------------------ |
| `payload.business_hours` | `object` | No       | —       | Business hours configuration details |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Business hours creation request body",
    "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 hours",
            "enum": [
              "24_by_7",
              "24_by_5",
              "custom"
            ]
          },
          "business_days": {
            "type": "array",
            "description": "Days of the week when the organization operates",
            "minItems": 1,
            "maxItems": 7,
            "uniqueItems": true,
            "items": {
              "type": "string",
              "description": "Day of the week",
              "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",
            "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",
            "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"
        ],
        "additionalProperties": false
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name          | Type      | Required | Default | Details                                        |
| ------------- | --------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `unknown` | Yes      | —       | Provider response payload.                     |
| `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": {
        "description": "Provider response payload."
      },
      "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)
