Launch Week 02 wrapped — explore all five launches

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.

DELETE/v1/scheduled-alerts/{scheduledAlertId}
curl -X DELETE "https://api.confident-ai.com/v1/scheduled-alerts/{scheduledAlertId}" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "id": "SCHEDULED-ALERT-ID",
    "deleted": true
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • scheduledAlertIdstringRequired

    The unique identifier of the scheduled alert to delete.

Response

  • successboolean

    Indicates if the deletion was successful.

  • dataobject

    Show 2 propertiesHide 2 properties
    • idstring

      The unique identifier of the deleted scheduled alert.

    • deletedboolean

      Always true when the alert was removed.

Built byConfident AI