2025-01-30 12:52:02 +03:00
|
|
|
---
|
2025-01-31 17:10:45 +03:00
|
|
|
sidebar_position: 3
|
2025-01-30 12:52:02 +03:00
|
|
|
---
|
|
|
|
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
|
|
|
# Get requests handler
|
2025-01-31 17:10:45 +03:00
|
|
|
Gets information about the handler by key
|
2025-01-30 12:52:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`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"
|
2025-02-05 12:40:59 +03:00
|
|
|
Project = "C:\Users\Administrator\AppData\Local\Temp\v8_9B5_45.oint";
|
|
|
|
HandlerKey = "e52f...";
|
2025-01-30 12:52:02 +03:00
|
|
|
|
2025-01-30 19:59:05 +03:00
|
|
|
Result = OPI_IntegrationProxy.GetRequestsHandler(Project, HandlerKey);
|
2025-01-30 12:52:02 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|