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

`DELETE /api/icmp-monitors/:icmpMonitorPublicId`

## Authentifizierung

Erfordert eine gültige Session.

- Header: `Authorization: Bearer <token>`

## Parameter

- `icmpMonitorPublicId` (Pfad, erforderlich): Öffentliche UUID des ICMP Monitors.

## cURL

```bash
curl -X DELETE "https://YOUR_DOMAIN/api/icmp-monitors/22222222-2222-4222-8222-222222222222" \
 -H "Authorization: Bearer $TOKEN"
```

## Response

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

## Fehler

- `400` ICMP Monitor Public ID (UUID) erforderlich
- `401` Unauthorized
- `403` Forbidden
- `404` ICMP Monitor nicht gefunden

