Delete Scheduled Alert
DELETEhttps://api.confident-ai.com/v1/scheduled-alerts/{scheduledAlertId}
Permanently deletes a scheduled alert and unregisters its next run. To stop an alert temporarily, set enabled to false instead.
Warning: This action cannot be undone.
curl -X DELETE "https://api.confident-ai.com/v1/scheduled-alerts/{scheduledAlertId}" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"id": "SCHEDULED-ALERT-ID",
"deleted": true
}
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Path parameters
scheduledAlertIdstringRequiredThe unique identifier of the scheduled alert to delete.
Response
successbooleanIndicates if the deletion was successful.
dataobjectShow 2 propertiesHide 2 properties
idstringThe unique identifier of the deleted scheduled alert.
deletedbooleanAlways true when the alert was removed.