1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-15 14:03:22 +02:00
2024-07-10 14:33:00 +03:00

723 B

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: Map Of KeyAndValue - Serialized JSON response from VK


 Parameters = GetVKParameters();
 PostID = "2304";
 
 Result = OPI_VK.DeletePost(PostID, Parameters);
 
 oint vk DeletePost --post %post% --auth %auth%

{
 "response": 1
}