mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
42 lines
883 B
Markdown
42 lines
883 B
Markdown
---
|
|
sidebar_position: 6
|
|
---
|
|
|
|
# Unpublish file
|
|
Prohibits access to the file for external users
|
|
|
|
|
|
*Function CancelFilePublication(Val Token, Val FileID) Export*
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|-|-|-|-|
|
|
| Token | --token | String | Token |
|
|
| FileID | --fileid | String | ID of the file to be accessed |
|
|
|
|
|
|
Returns: Key-Value Pair - serialized JSON response from Dropbox
|
|
|
|
```bsl title="Code example"
|
|
|
|
Token = "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L...";
|
|
File = "kJU6-a-pT48AAAAAAAAABw";
|
|
|
|
Result = OPI_Dropbox.CancelFilePublication(Token, File);
|
|
|
|
|
|
```
|
|
|
|
```sh title="CLI command example"
|
|
|
|
oint dropbox CancelFilePublication --token "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L..." --fileid %fileid%
|
|
|
|
|
|
```
|
|
|
|
|
|
```json title="Result"
|
|
|
|
{}
|
|
|
|
```
|