1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-15 11:56:36 +02:00
Vitaly the Alpaca (bot) 34077d5a5f Main build (Jenkins)
2025-01-30 19:59:05 +03:00

39 lines
766 B
Plaintext
Vendored

---
sidebar_position: 4
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get requests handler
Gets information about the handler by ID
`Function GetRequestsHandler(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 - Information about the handler
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Project = "C:\Users\Administrator\AppData\Local\Temp\v8_8CEA_26.oint";
HandlerKey = "78fe...";
Result = OPI_IntegrationProxy.GetRequestsHandler(Project, HandlerKey);
```