1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/Addons/Melezh/Console-Interface/Argument-setting/Clear-handler-arguments.mdx

55 lines
1.3 KiB
Plaintext
Raw Normal View History

2025-05-27 19:03:00 +03:00
---
sidebar_position: 3
description: Clear handler arguments and other functions to work with Melezh in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Clear handler arguments
Deletes all previously values of the handler arguments
`Function ClearHandlerArguments(Val Project, Val HandlersKey) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Project | --proj | String | ✔ | Project filepath |
| HandlersKey | --handler | String | ✔ | Handlers key |
Returns: Structure Of KeyAndValue - Cleaning result
<br/>
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
melezh ClearHandlerArguments \
2025-05-31 23:59:15 +03:00
--proj "/proj.melezh" \
2025-05-27 19:03:00 +03:00
--handler "my-key"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
melezh ClearHandlerArguments ^
2025-05-31 23:59:15 +03:00
--proj "/proj.melezh" ^
2025-05-27 19:03:00 +03:00
--handler "my-key"
```
</TabItem>
</Tabs>
```json title="Result"
{
"result": true
}
```