--- sidebar_position: 5 description: Update request handler 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'; # Update request handler Changes the values of the request handler fields `Function UpdateRequestsHandler(Val Project, Val HandlersKey, Val OintLibrary = "", Val OintFunction = "", Val Method = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Project | --proj | String | ✔ | Project filepath | | HandlersKey | --handler | String | ✔ | Handlers key | | OintLibrary | --lib | String | ✖ | Library name in CLI format | | OintFunction | --func | String | ✖ | OpenIntegrations function name | | Method | --method | String | ✖ | HTTP method to be processed by the handler: GET, JSON, FORM | Returns: Structure Of KeyAndValue - Result of changing the handler
```bash melezh UpdateRequestsHandler \ --proj "C:\Users\bayselonarrend\AppData\Local\Temp\anxujp4k.bmi" \ --handler "cdf15d862" \ --lib "vk" \ --func "CreatePost" \ --method "FORM" ``` ```batch melezh UpdateRequestsHandler ^ --proj "C:\Users\bayselonarrend\AppData\Local\Temp\anxujp4k.bmi" ^ --handler "cdf15d862" ^ --lib "vk" ^ --func "CreatePost" ^ --method "FORM" ``` ```json title="Result" { "result": true } ```