1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-02 22:05:37 +02:00
Vitaly the Alpaca (bot) b6410c8eb9 Main build (Jenkins)
2025-01-31 19:55:08 +03:00

39 lines
752 B
Plaintext
Vendored

---
sidebar_position: 6
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Disable requests handler
Disables the handler by key
`Function DisableRequestsHandler(Val Project, Val HandlerKey) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Project | --proj | String | ✔ | Project filepath |
| HandlerKey | --handler | String | ✔ | Handler key |
Returns: Structure Of KeyAndValue - Switching result
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Project = "C:\Users\Administrator\AppData\Local\Temp\v8_85A2_1a.oint";
HandlerKey = "E4D4...";
Result = OPI_IntegrationProxy.DisableRequestsHandler(Project, HandlerKey);
```