--- sidebar_position: 7 --- # Delete selection Deletes the selection by ID `Function DeleteSelection(Val Selection, Val Parameters = "") Export` | Parameter | CLI option | Type | Destination | |-|-|-|-| | Selection | --sel | String | Selection ID | | Parameters | --auth | Structure Of String | Authorization JSON or path to .json | Returns: Map Of KeyAndValue - Serialized JSON response from VK
```bsl title="Code example" Parameters = GetVKParameters(); Selection = "123"; Result = OPI_VK.DeleteSelection(Selection, Parameters); ``` ```sh title="CLI command example" oint vk DeleteSelection --sel %sel% --auth %auth% ``` ```json title="Result" { "response": 1 } ```