You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
67 lines
2.6 KiB
Plaintext
Vendored
67 lines
2.6 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 4
|
|
description: Add users to folder and other functions to work with Dropbox 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, Dropbox]
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Add users to folder
|
|
Grants external users access to the directory
|
|
|
|
|
|
|
|
`Function AddUsersToFolder(Val Token, Val FolderID, Val EmailAddresses, Val ViewOnly = True) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Token | --token | String | ✔ | Token |
|
|
| FolderID | --folder | String | ✔ | ID of the public catalog (shared folder ID) |
|
|
| EmailAddresses | --emails | String, Array of String | ✔ | List of email addresses of users being added |
|
|
| ViewOnly | --readonly | Boolean | ✖ | Prohibits file editing for the external user |
|
|
|
|
|
|
Returns: Undefined - empty response
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Token = "sl.u.AGAGzotJ_9OuP6MRKStSIEoDQTzXMAkIGe8ENpKXQDzll1dOkHELxjHPTgrtDxbSOHjjGif8Pvd2LknDCCPNaWPRs51s34xZA_KUMY0FYazkVuperdpU9hlHCmqyOAUWY87j4yEM5E5Ca8G_DQ3dzBNFhWiP7BtXO6vEwIkiJNyI6rhGsqIWDCls86sAm7iAY6qmzZeocjSXDaA-YhFDhfHbCGA5a6A2EE3euUkADJX1Op03kEbKgzqys6144IX4kV2bq0R7j6rn8dE_PwJeimneLnudLpko7Tng4bi7PLLr6J9nrhXejybPTUlWZ9Q4Ef5g_tL6_M5D5orFHgVZKrni5cjt-tO1dkHuwJgmluAl0WfETDEnHG_rqEndaQrhWktLszMgjhOjZ9Wp0BVf3pTDmnLirT_rAhi0pCjFGG_PllShVYpStw2-I2Y8lgRcW6m54TqM0BTjcF7dB4Y_849sbPPvtjcAQfhZpwPVTLk5sNOhOsl2ccb2ZTqeX47qyuwdH6B15lhXUuMC8s6cxCBDO5t58xAB2r3sMq2xiLnv6IpDHAEX-MLQRSPTahQD58Z7-YzVjB0RPQZ4Vds2jWpkrJGQ9_sZJFl1u-DyxQbJRZfH9MBf1ijjqdWCPf-ZxvRn7rD2d_jR-NXihHcT4ePLBWmxW1m8iDAFapLE0_M5ggJlaFMitonDlIg279BqonvJ_47uMx-zCLwvtNhPu1QZksaakSf...";
|
|
Email = "h5bk6ft62s@privaterelay.appleid.com";
|
|
Folder = "13051199777"; // shared_folder_id
|
|
|
|
Result = OPI_Dropbox.AddUsersToFolder(Token, Folder, Email, False);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint dropbox AddUsersToFolder \
|
|
--token "***" \
|
|
--folder "13020385041" \
|
|
--emails "['h5bk6ft62s@privaterelay.appleid.com']" \
|
|
--readonly true
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint dropbox AddUsersToFolder ^
|
|
--token "***" ^
|
|
--folder "13020385041" ^
|
|
--emails "['h5bk6ft62s@privaterelay.appleid.com']" ^
|
|
--readonly true
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{}
|
|
```
|