You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
64 lines
1.6 KiB
Plaintext
Vendored
64 lines
1.6 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 4
|
|
description: Delete object and other functions to work with Yandex Disk 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, Yandex Disk]
|
|
---
|
|
|
|
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 = "/379ae74a-4ddd-43e9-8b7b-7245ef089d89.png";
|
|
|
|
Result = OPI_YandexDisk.DeleteObject(Token, Path, False);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint yadisk DeleteObject \
|
|
--token "***" \
|
|
--path "/67870eca-aa2d-403f-8093-6bf7b85f8872.png" \
|
|
--can false
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint yadisk DeleteObject ^
|
|
--token "***" ^
|
|
--path "/67870eca-aa2d-403f-8093-6bf7b85f8872.png" ^
|
|
--can false
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
null
|
|
```
|