1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-04 22:14:37 +02:00

44 lines
1.2 KiB
Plaintext
Raw Normal View History

2025-01-31 17:10:45 +03:00
---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Update requests handler
Changes the values of the request handler fields
`Function UpdateRequestsHandler(Val Project, Val HandlerKey, Val OintLibrary = "", Val OintFunction = "", Val Method = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Project | --proj | String | ✔ | Project filepath |
| HandlerKey | --handler | String | ✔ | Handler key |
| OintLibrary | --lib | String | ✖ | Library name in CLI command format |
| OintFunction | --func | String | ✖ | OpenIntegrations function name |
| Method | --method | String | ✖ | HTTP method that will process the handler: GET, POST, MULTIPART |
Returns: Structure Of KeyAndValue - Result of handler modification
<br/>
```bsl title="1C:Enterprise/OneScript code example"
2025-01-31 19:55:08 +03:00
Project = "C:\Users\Administrator\AppData\Local\Temp\v8_85A2_1a.oint";
HandlerKey = "E4D4...";
2025-01-31 17:10:45 +03:00
OintLibrary = "dropbox";
OintFunction = "CreateFolder";
Result = OPI_IntegrationProxy.UpdateRequestsHandler(Project, HandlerKey, OintLibrary, OintFunction);
```