1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-23 00:38:51 +02:00
Files
OpenIntegrations/docs/en/md/Integration_proxy_methods/Handlers-configuration/Get-requests-handler.mdx
Vitaly the Alpaca (bot) 6fa290c104 Main build (Jenkins)
2025-02-01 00:21:44 +03:00

39 lines
767 B
Plaintext
Vendored

---
sidebar_position: 3
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get requests handler
Gets information about the handler by key
`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_80F8_31.oint";
HandlerKey = "71A3...";
Result = OPI_IntegrationProxy.GetRequestsHandler(Project, HandlerKey);
```