1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00
Files
OpenIntegrations/docs/en/md/Yandex_Disk/File-and-folder-management/Delete-object.mdx
T
Vitaly the Alpaca (bot) e0572c1b9a Main build (Jenkins)
2024-11-16 14:34:22 +03:00

62 lines
1.3 KiB
Plaintext

---
sidebar_position: 4
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Delete object
Deletes an object at the specified path
`Function DeleteObject(Val Token, Val Path, Val ToCart = True) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Path | --path | String | ✔ | Path to the folder or file to be deleted |
| ToCart | --can | Boolean | ✖ | To cart |
Returns: Map Of KeyAndValue - serialized JSON response from Yandex
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "y0_AgAAAABdylaOAAs0QgAAAAD5i-a...";
Path = "/d2723635-7dc5-4f24-8f6b-c695d4054e1c.png";
Result = OPI_YandexDisk.DeleteObject(Token, Path, False);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint yadisk DeleteObject \
--token "***" \
--path "/92908d00-b3bf-49d2-92c7-2b73513ef920.png" \
--can false
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint yadisk DeleteObject ^
--token "***" ^
--path "/92908d00-b3bf-49d2-92c7-2b73513ef920.png" ^
--can false
```
</TabItem>
</Tabs>
```json title="Result"
null
```