1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00
Files
OpenIntegrations/docs/en/md/Dropbox/File-and-directory-management/Delete-object.mdx
Vitaly the Alpaca (bot) cdef2d02ab Main build (Jenkins)
2025-10-21 21:43:05 +03:00

75 lines
2.6 KiB
Plaintext
Vendored

---
sidebar_position: 7
description: Delete object and other functions to work with Dropbox in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Dropbox]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Delete object
Deletes an object from the cloud drive
`Function DeleteObject(Val Token, Val Path, Val Irrecoverable = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Path | --path | String | ✔ | Path to the object to delete |
| Irrecoverable | --permanently | String | ✖ | Delete object without the possibility of recovery |
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Path = "/New/pic.png";
Token = "sl.u.AGD50XKO7wtrVrk6Jj8bLInZ4qU1xI-4iki5x1AaK0BbetjfvOgXAPvCGOg1SX0TPjL-vdL1lrBzf6Bv_QqtVoUIyTIpEoQQA0VeSWGiwkkJIpAZB4XW2ZM6Mxy0T2f7LlQVWVDvIPTgWuxfnjxBDEE8Aj6BXgp18lcpXi-b13OKnhmSa_JIir2mS2m-02rxHgHCGvba2ohmM4nXwVgpK8ycm9PaSnD6K0UNqj_Mt5j-iW1JrT8Q72_ybsfk-UHbavtz80wmZ4td3A_3Gyqf9bHU1D-QyJ7gMobqr41Egk3OtiqkVs5NVbmG7l0a-ekLK2DCZOeIu_qgBtcFe2nzb2dM34prMeIgSJVB2mkIndyn9jo4ox4USxB8eFK3oxld0iK1ZiPhEKw9lcd0YYJt0R4DAKxJjGPW9WBTpBAjVralqcNAx-WMDhKR7hRwjRIO3pGtUnGxOjmdWtqstRZhjrmj3laFHZkQVNWVx4nI4hv5SvXgqkNhCD7PFI9SZppme8h1K-NuV1JMbPlAs3EPLMFaZE7oRZsIe73HidQkzV_c_z7--MMkrYliSE4MUq8lzybgEX8l_VznO6uH6v1NEY_5vCoYQZL2Ecc09E8mWWoQJCDrXhgApXu0EPvuQ26OpFmrgd1USEb-Y_IVN548uuZsbuRwYQP6KWgOby3SGOU6cfVEkx1WNW2Uhg8-hBhzSxq9UV0CQ5Rh2WK0nrf7dYM-Kk2UJIF...";
Result = OPI_Dropbox.DeleteObject(Token, Path);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox DeleteObject \
--token "***" \
--path "/New/url_doc.docx"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox DeleteObject ^
--token "***" ^
--path "/New/url_doc.docx"
```
</TabItem>
</Tabs>
```json title="Result"
{
"metadata": {
".tag": "file",
"name": "pic.png",
"path_lower": "/new/pic.png",
"path_display": "/New/pic.png",
"id": "id:kJU6-a-pT48AAAAAAABbcw",
"client_modified": "2025-10-15T09:44:41Z",
"server_modified": "2025-10-15T09:45:20Z",
"rev": "6412f5bdf5fa1bd841553",
"size": 2114023,
"is_downloadable": true,
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
}
}
```