delete https://www.virustotal.com/api/v3/collections//subscription_preferences
Special privileges required
Reports & Analysis are only available to users with the Google Threat Intelligence (Google TI) Enterprise or Enterprise Plus licenses.
Use this endpoint to unfollow a certain Report, stopping IoC Stream and email notifications for new IoCs added to it.
Examples
Unfollow the Report with report--25-10029825 identifier.
import requests
object_id = "report--25-10029825"
url = f"https://www.virustotal.com/api/v3/collections/{object_id}/subscription_preferences"
headers = {
"accept": "application/json","x-apikey": <api-key>
}
response = requests.delete(url, headers=headers)