Takes a list of alert IDs as a request and deletes them. You can enter a minimum of one alert ID and a maximum of 100 alert IDs.
Use the alert IDs from the alert search response (this is a part of the API endpoint URL).
PATCH https://<etp_instance_addr>/api/v2/public/alerts/delete
Required header
x-fireeye-api-key: <key>—Specifies your personal API key. (For FireEye IAM users)
Authorization: Bearer xxxx - Specifies your API access token (For Trellix IAM users)
Example request
curl -X PATCH --location '<etp_instance_addr>/api/v2/public/alerts/delete -d '{ "alert_id": ["3z2CMqo-1124824-311c6414-2363-4014-a181-e23a606f1ae7-eb2247de"] } --header 'x-fireeye-api-key: xxxxx'
Example response
{
"data":
{
"type": "alerts",
"operation": "delete",
"status":
{
"success": ["3z2CMqo-1124824-311c6414-2363-4014-a181-e23a606f1ae7-eb2247de",
"3z2CMqo-1124824-ecb86afd-8d84-462d-904a-09bc0724ce26-eb2247de"]
}
},
}