Skip to main content

Delete selection

Deletes the selection by ID

Function DeleteSelection(Val Selection, Val Parameters = "") Export

ParameterCLI optionTypeDescription
Selection--selStringSelection ID
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
  Parameters = GetVKParameters();

Selection = "125";

Result = OPI_VK.DeleteSelection(Selection, Parameters);
CLI command example
    
oint vk DeleteSelection --sel "125" --auth "GetVKParameters()"

Result
{
"response": 1
}