2024-06-07 13:53:24 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 6
|
|
|
|
---
|
|
|
|
|
|
|
|
# Delete album
|
|
|
|
Deletes a previously created album
|
|
|
|
|
|
|
|
|
|
|
|
*Function DeleteAlbum(Val AlbumID, Val Parameters = "") Export*
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| AlbumID | --album | String, Number | Album ID |
|
|
|
|
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Serialized JSON response from VK
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
Parameters = GetVKParameters();
|
|
|
|
AlbumID = "304549394";
|
|
|
|
|
|
|
|
Result = OPI_VK.DeleteAlbum(AlbumID, Parameters);
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint vk DeleteAlbum --album %album% --auth %auth%
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
|
|
|
{
|
|
|
|
"response": 1
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|