1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-17 22:32:45 +02:00

58 lines
1.3 KiB
Markdown
Raw Normal View History

---
sidebar_position: 3
---
2024-10-14 10:18:00 +03:00
# Add users to file
Defines access to the file for third-party users
2024-07-10 13:58:29 +03:00
`Function AddUsersToFile(Val Token, Val FileID, Val EmailAddresses, Val ViewOnly = True) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| 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
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-10-15 10:07:27 +03:00
Token = "sl.B-uquz3utwEHepKzyqLBfnFvmY1EWTYDus5LDjT5ux5srp9PJRtr7CvMv20nVl2rRGC3K4J_X5...";
2024-09-24 11:38:18 +03:00
Email = "h5bk6ft62s@privaterelay.appleid.com";
File = "kJU6-a-pT48AAAAAAAAABw";
2024-08-13 16:47:32 +03:00
Result = OPI_Dropbox.AddUsersToFile(Token, File, Email, False);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
[
2024-10-06 16:55:08 +03:00
{
"member": {
2024-10-06 16:55:08 +03:00
".tag": "email",
"email": "h5bk6ft62s@privaterelay.appleid.com"
},
"result": {
2024-10-06 16:55:08 +03:00
".tag": "success",
"success": {
".tag": "editor"
}
},
"sckey_sha1": "ee2d8fd2cee052e103a52aa74be85bbebb8e6bb4",
"invitation_signature": [
2024-10-06 16:55:08 +03:00
"ee2d8fd2cee052e103a52aa74be85bbebb8e6bb4:ed7721b375882c806612d4056dad9f317cc98a22"
]
2024-10-06 16:55:08 +03:00
}
]
```