1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-23 21:29:38 +02:00
Vitaly the Alpaca (bot) 5e0a08b5cd Main build (Jenkins)
2024-12-10 09:08:34 +03:00

66 lines
1.7 KiB
Plaintext

---
sidebar_position: 4
---
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.CCRidcEOx5_Sft41hhKNkIVvFAu8ZT1CoP6wh40MOAccwPZhLOI2YXXzbpEypt0YZf_3ZGYM9H...";
Email = "h5bk6ft62s@privaterelay.appleid.com";
Folder = "11283286003"; // shared_folder_id
Result = OPI_Dropbox.AddUsersToFolder(Token, Folder, Email, False);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox AddUsersToFolder \
--token "***" \
--folder "11288821315" \
--emails "['h5bk6ft62s@privaterelay.appleid.com']" \
--readonly true
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox AddUsersToFolder ^
--token "***" ^
--folder "11288821315" ^
--emails "['h5bk6ft62s@privaterelay.appleid.com']" ^
--readonly true
```
</TabItem>
</Tabs>
```json title="Result"
{}
```