1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-31 22:05:13 +02:00

46 lines
1.2 KiB
Markdown
Raw Normal View History

---
sidebar_position: 4
---
# Add users to folder
Grants external users access to the directory
2024-07-10 13:58:29 +03:00
`Function AddUsersToFolder(Val Token, Val FolderID, Val EmailAddresses, Val ViewOnly = True) Export`
| Parameter | CLI option | Type | 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
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-08-18 17:47:59 +03:00
Token = "sl.B4gp-iE6U2BXAeEhqhHwN00_GAOFjvVi4j_C9r2yZ5sjIUcTga38IbFN49TKhxrmzyrNjttkXA...";
2024-08-13 16:47:32 +03:00
Email = "h5bk6ft62s@privaterelay.appleid.com";
2024-08-18 17:47:59 +03:00
Folder = "3308017555"; // shared_folder_id
2024-08-13 16:47:32 +03:00
Result = OPI_Dropbox.AddUsersToFolder(Token, Folder, Email, False);
```
```sh title="CLI command example"
oint dropbox AddUsersToFolder --token "sl.B6AQWp9MlZlz4iaf41whVKxX9-MXeCiQhPRe4YIRxFmZ3zHsdjmOAatzgaWVhqmlIOvDD6WIUQ..." --folder %folder% --emails %emails% --readonly %readonly%
```
```json title="Result"
2024-08-14 09:06:31 +03:00
{}
```