delete https://www.virustotal.com/api/v3/threat_profiles/
Public Preview
Threat Profile module is provided as a public preview and is subject to change. Use with caution.
Use this endpoint to delete a certain Threat Profile object.
Only owners and editors can delete a threat profile, although users privileges can be changed by other owners or editors of the Threat Profile.
Examples
Delete my Threat Profiles with 451b02d448354f08ba5f179998f336e2 identifier.
import requests
profile_id = "451b02d448354f08ba5f179998f336e2"
url = f"https://www.virustotal.com/api/v3/threat_profiles/{profile_id}"
headers = {
"accept": "application/json","x-apikey": <api-key>
}
response = requests.delete(url, headers=headers)