2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Publish folder
|
|
|
|
Sets the directory to public access mode
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function PublishFolder(Val Token, Val Path) Export`
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Token |
|
|
|
|
| Path | --path | String | Path to the target directory |
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
```bsl title="Code example"
|
2024-08-13 14:52:26 +02:00
|
|
|
Token = FunctionParameters["Dropbox_Token"];
|
|
|
|
Path = "/New";
|
|
|
|
|
|
|
|
Result = OPI_Dropbox.PublishFolder(Token, Path);
|
2024-06-05 12:19:46 +02:00
|
|
|
```
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
oint dropbox PublishFolder --token "sl.B6AQWp9MlZlz4iaf41whVKxX9-MXeCiQhPRe4YIRxFmZ3zHsdjmOAatzgaWVhqmlIOvDD6WIUQ..." --path %path%
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 13:11:17 +02:00
|
|
|
{
|
2024-08-13 14:52:26 +02:00
|
|
|
".tag": "complete",
|
|
|
|
"access_type": {
|
|
|
|
".tag": "owner"
|
|
|
|
},
|
|
|
|
"is_inside_team_folder": false,
|
|
|
|
"is_team_folder": false,
|
|
|
|
"path_display": "/New",
|
|
|
|
"path_lower": "/new",
|
|
|
|
"name": "New",
|
|
|
|
"policy": {
|
|
|
|
"acl_update_policy": {
|
|
|
|
".tag": "editors"
|
|
|
|
},
|
|
|
|
"shared_link_policy": {
|
|
|
|
".tag": "anyone"
|
|
|
|
},
|
|
|
|
"viewer_info_policy": {
|
|
|
|
".tag": "enabled"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"preview_url": "https://www.dropbox.com/scl/fo/0eu3zz5f05vymefoq6yyl/h?dl=0",
|
|
|
|
"shared_folder_id": "5009428129",
|
|
|
|
"time_invited": "2024-05-30T12:35:34Z",
|
|
|
|
"access_inheritance": {
|
|
|
|
".tag": "inherit"
|
|
|
|
},
|
|
|
|
"folder_id": "id:kJU6-a-pT48AAAAAAAABXw"
|
|
|
|
}
|
2024-06-05 12:19:46 +02:00
|
|
|
```
|