--- sidebar_position: 6 description: Enable scheduled task and other functions to work with Melezh in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Enable scheduled task Enables scheduled task by ID `Function EnableRequestsHandler(Val Project, Val HandlersKey) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Project | --proj | String | ✔ | Project filepath | | TaskID | --task | String | ✔ | Task ID | Returns: Structure Of KeyAndValue - Switching result
```bash melezh EnableRequestsHandler \ --proj "/proj.melezh" \ --handler "cead35dfd" ``` ```batch melezh EnableRequestsHandler ^ --proj "/proj.melezh" ^ --handler "cead35dfd" ``` ```json title="Result" { "result": true } ```