You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-12-13 23:36:04 +02:00
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
|
|
---
|
||
|
|
sidebar_position: 1
|
||
|
|
description: Create group and other functions to work with Green Max 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, Green Max]
|
||
|
|
---
|
||
|
|
|
||
|
|
import Tabs from '@theme/Tabs';
|
||
|
|
import TabItem from '@theme/TabItem';
|
||
|
|
|
||
|
|
# Create group
|
||
|
|
Creates a new group chat with the specified name
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
`Function CreateGroup(Val AccessParameters, Val Name, Val Members) Export`
|
||
|
|
|
||
|
|
| Parameter | CLI option | Type | Required | Description |
|
||
|
|
|-|-|-|-|-|
|
||
|
|
| AccessParameters | --access | Structure Of KeyAndValue | ✔ | Access parameters. See FormAccessParameters |
|
||
|
|
| Name | --name | String | ✔ | Group name |
|
||
|
|
| Members | --members | Array Of String, String | ✔ | Array of group member IDs or a single ID |
|
||
|
|
|
||
|
|
|
||
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Green API
|
||
|
|
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
:::tip
|
||
|
|
Method at API documentation: [CreateGroup](https://green-api.com/v3/docs/api/groups/CreateGroup/)
|
||
|
|
:::
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
|
||
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
||
|
|
ApiUrl = "https://3100.api.green-api.com/v3";
|
||
|
|
MediaUrl = "https://3100.api.green-api.com/v3";
|
||
|
|
IdInstance = "31003...";
|
||
|
|
ApiTokenInstance = "17915d8e0b4b4975a183478da...";
|
||
|
|
|
||
|
|
UserID = 87654321;
|
||
|
|
Name = "New group";
|
||
|
|
|
||
|
|
AccessParameters = OPI_GreenMax.FormAccessParameters(ApiUrl, MediaUrl, IdInstance, ApiTokenInstance);
|
||
|
|
Result = OPI_GreenMax.CreateGroup(AccessParameters, Name, UserID);
|
||
|
|
```
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|