---
title: "Delete SMTP Monitor"
description: "Deletes an SMTP monitor."
---

`DELETE /api/smtp-monitors/:smtpMonitorPublicId`

## Authentication

Requires a valid session and write access.

- Header: `Authorization: Bearer <token>`

## Parameters

- `smtpMonitorPublicId` (Path, required): SMTP monitor public UUID.

## cURL

```bash
curl -X DELETE "https://YOUR_DOMAIN/api/smtp-monitors/33333333-3333-4333-8333-333333333333" \
 -H "Authorization: Bearer $TOKEN"
```

## Response

```json
{ "success": true }
```

## Errors

- `400` SMTP monitor public ID (UUID) required
- `401` Unauthorized
- `403` Forbidden
- `404` Not found

