---
title: "TCP Monitor löschen"
description: "Löscht einen TCP Monitor."
---

`DELETE /api/tcp-monitors/:tcpMonitorPublicId`

## Authentifizierung

Erfordert eine gültige Session und Schreibrechte.

- Header: `Authorization: Bearer <token>`

## Parameter

- `tcpMonitorPublicId` (Pfad, erforderlich): Öffentliche UUID des TCP Monitors.

## cURL

```bash
curl -X DELETE "https://YOUR_DOMAIN/api/tcp-monitors/44444444-4444-4444-8444-444444444444" \
 -H "Authorization: Bearer $TOKEN"
```

## Response

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

## Errors

- `400` TCP Monitor Public ID (UUID) erforderlich
- `401` Unauthorized
- `403` Forbidden
- `404` Not found

