mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
1.2 KiB
1.2 KiB
sidebar_position |
---|
3 |
Add user to file
Defines access to the file for an external user
Function AddUsersToFile(Val Token, Val FileID, Val EmailAddresses, Val ViewOnly = True) Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Token |
FileID | --fileid | String | ID of the file to be accessed |
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: Map Of KeyAndValue - serialized JSON response from Dropbox
Token = "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L...";
Email = "h5bk6ft62s@privaterelay.appleid.com";
File = "kJU6-a-pT48AAAAAAAAABw";
Result = OPI_Dropbox.AddUsersToFile(Token, File, Email, False);
oint dropbox AddUsersToFile --token "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L..." --fileid %fileid% --emails %emails% --readonly %readonly%