delete
https://www.virustotal.com/api/v3/collections/
As the owner, you can use this endpoint to delete a Report.
This endpoint is currently in Private Preview.
Examples
Delete a Report.
import requests
object_id = "report--f64d8bb1acdd4fb498082b9c48e92c67"
url = f"https://www.virustotal.com/api/v3/collections/{object_id}"
headers = {
"accept": "application/json","x-apikey": <api-key>
}
response = requests.delete(url, headers=headers)