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

# Delete SSL Monitor

> Delete an SSL certificate monitor

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the SSL monitor to delete
</ParamField>

## Response

Returns a success confirmation. This action cannot be undone.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://kodostatus.com/api/v1/ssl-monitors/ssl_abc123" \
    -H "X-API-Key: your_api_key"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://kodostatus.com/api/v1/ssl-monitors/ssl_abc123', {
    method: 'DELETE',
    headers: { 'X-API-Key': 'your_api_key' }
  });
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "SSL monitor deleted successfully"
  }
  ```
</ResponseExample>

<Warning>
  Deleting an SSL monitor removes all historical check data. This action cannot be undone.
</Warning>
