1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-07 13:43:35 +02:00
2024-06-05 13:35:05 +03:00

745 B

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: Key-Value Pair - Serialized JSON response from VK

	
 Parameters = GetVKParameters();
 AlbumID = "304549394";
 
 Result = OPI_VK.DeleteAlbum(AlbumID, Parameters);
 
	
 
 oint vk DeleteAlbum --album %album% --auth %auth%



{
 "response": 1
}