Remove a comment detection for a hash.

Remove a comment and reset confirmed detection for a hash.

This endpoint allows you to delete a comment and change detection to None so hash will appear over analysis listings if detected. More information about detection attribute could be found in /hashes/{sha256}/comments.

import requests

comment_id = '<comment-id>'

url = "https://www.virustotal.com/api/v3/monitor_partner/comments/{comment_id}" % comment_id

response = requests.request("DELETE", url)
print(response.text)
Language
Authorization
Header
Click Try It! to start a request and see the response here!