1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/VK/Group-work/Delete-image.md

43 lines
722 B
Markdown
Raw Normal View History

---
sidebar_position: 9
---
# Delete image
Deletes an image from the album
*Function DeleteImage(Val ImageID, Val Parameters = "") Export*
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| ImageID | --pictureid | String, Number | Image ID |
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Key-Value Pair - Serialized JSON response from VK
```bsl title="Code example"
Parameters = GetVKParameters();
ImageID = "457244340";
Result = OPI_VK.DeleteImage(ImageID, Parameters);
```
```sh title="CLI command example"
oint vk DeleteImage --pictureid %pictureid% --auth "GetVKParameters()"
```
```json title="Result"
{
"response": 1
}
```