mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
43 lines
682 B
Markdown
43 lines
682 B
Markdown
---
|
|
sidebar_position: 3
|
|
---
|
|
|
|
# Delete post
|
|
Deletes a post by ID
|
|
|
|
|
|
*Function DeletePost(Val PostID, Val Parameters = "") Export*
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|-|-|-|-|
|
|
| PostID | --post | String, Number | Post 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();
|
|
PostID = "2304";
|
|
|
|
Result = OPI_VK.DeletePost(PostID, Parameters);
|
|
|
|
|
|
```
|
|
|
|
```sh title="CLI command example"
|
|
|
|
oint vk DeletePost --post %post% --auth "GetVKParameters()"
|
|
|
|
```
|
|
|
|
|
|
```json title="Result"
|
|
|
|
{
|
|
"response": 1
|
|
}
|
|
|
|
```
|