Delete a Threat Profile

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)

Path Params
string
required

Threat Profile's ID

Headers
string
required

Your API key

Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json