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

`DELETE /api/ssh-monitors/:sshMonitorPublicId`

## Authentifizierung

Erfordert eine gültige Session und Schreibrechte.

- Header: `Authorization: Bearer <token>`

## Parameter

- `sshMonitorPublicId` (Pfad, erforderlich): Öffentliche UUID des SSH Monitors.

## cURL

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

## Response

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

## Errors

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

