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

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

## Authentication

Requires a valid session.

- Header: `Authorization: Bearer <token>`

## Parameters

- `icmpMonitorPublicId` (Path, required): ICMP monitor public UUID.

## cURL

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

## Response

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

## Errors

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

