You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-07-17 01:42:25 +02:00
Main build (Jenkins)
This commit is contained in:
@ -10,17 +10,16 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
|
||||
`Function AddRequestsHandler(Val Project, Val Name, Val SecretKey, Val Method = "GET") Export`
|
||||
`Function AddRequestsHandler(Val Project, Val OintFunction, Val Method = "GET") Export`
|
||||
|
||||
| Parameter | CLI option | Type | Required | Description |
|
||||
|-|-|-|-|-|
|
||||
| Project | --proj | String | ✔ | Project filepath |
|
||||
| Name | --name | String | ✔ | Name of the new handler |
|
||||
| SecretKey | --secret | String | ✔ | Secret key for URL handler |
|
||||
| OintFunction | --func | String | ✔ | OpenIntegrations function name |
|
||||
| Method | --method | String | ✖ | HTTP method that will process the handler: GET, POST, MULTIPART |
|
||||
|
||||
|
||||
Returns: Structure Of KeyAndValue - result of adding a handler
|
||||
Returns: Structure Of KeyAndValue - Result of handler creation
|
||||
|
||||
<br/>
|
||||
|
||||
|
@ -17,7 +17,7 @@ import TabItem from '@theme/TabItem';
|
||||
| Path | --path | String | ✔ | Project filepath |
|
||||
|
||||
|
||||
Returns: Structure Of KeyAndValue - creation result
|
||||
Returns: Structure Of KeyAndValue - Creation result
|
||||
|
||||
<br/>
|
||||
|
||||
|
35
docs/en/md/Integration_proxy_methods/Project-setup/Delete-request-handler.mdx
vendored
Normal file
35
docs/en/md/Integration_proxy_methods/Project-setup/Delete-request-handler.mdx
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
---
|
||||
sidebar_position: 4
|
||||
---
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
# Delete request handler
|
||||
Removes the request handler from the project
|
||||
|
||||
|
||||
|
||||
`Function DeleteRequestHandler(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 - Deletion result
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
34
docs/en/md/Integration_proxy_methods/Project-setup/Get-request-handlers-list.mdx
vendored
Normal file
34
docs/en/md/Integration_proxy_methods/Project-setup/Get-request-handlers-list.mdx
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
---
|
||||
sidebar_position: 3
|
||||
---
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
# Get the list of request handlers
|
||||
Gets the list of handlers in the project
|
||||
|
||||
|
||||
|
||||
`Function GetRequestHandlersList(Val Project) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Required | Description |
|
||||
|-|-|-|-|-|
|
||||
| Project | --proj | String | ✔ | Project filepath |
|
||||
|
||||
|
||||
Returns: Structure Of KeyAndValue - Handlers list
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="1C:Enterprise/OneScript code example"
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
sidebar_position: 3
|
||||
sidebar_position: 5
|
||||
---
|
||||
|
||||
import Tabs from '@theme/Tabs';
|
||||
@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
|
||||
| Project | --proj | String | ✔ | Project filepath |
|
||||
|
||||
|
||||
Returns: Structure Of KeyAndValue - server shutdown result
|
||||
Returns: Structure Of KeyAndValue - Result of server shutdown
|
||||
|
||||
<br/>
|
||||
|
||||
|
Reference in New Issue
Block a user