> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rolearn.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Alert

> Delete a specific alert

<ParamField path="alert_id" type="integer" required>
  The ID of the alert to delete
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE https://rolearn.dev/api/alerts/42 \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": "deleted"
  }
  ```
</ResponseExample>
