curl --request POST \
--url https://api.coralogix.com/mgmt/openapi/5/alerts/alerts/v3/all/delete \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
'{
"deletedIds": [
"123e4567-e89b-12d3-a456-426614174000"
],
"notFoundIds": [
"123e4567-e89b-12d3-a456-426614174000"
]
}Delete multiple alert definitions by their IDs. The operation is atomic - either all alerts are deleted or none are.
Requires the following permissions:
alerts:UpdateConfigcurl --request POST \
--url https://api.coralogix.com/mgmt/openapi/5/alerts/alerts/v3/all/delete \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
'{
"deletedIds": [
"123e4567-e89b-12d3-a456-426614174000"
],
"notFoundIds": [
"123e4567-e89b-12d3-a456-426614174000"
]
}API key authentication
A request to delete multiple alert defintions by their IDs
["123e4567-e89b-12d3-a456-426614174000"]A response to the bulk deletion of alert definitions. The operation is atomic - either all alerts are deleted or none are.
Was this page helpful?