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

`DELETE /api/ftp-monitors/:ftpMonitorPublicId`

## Authentifizierung

`Authorization: Bearer <token>`

## Parameter

- `ftpMonitorPublicId` (Pfad, erforderlich): Öffentliche UUID des FTP Monitors.

## Beispiel (cURL)

```bash
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"

curl -X DELETE \
 "$BASE_URL/api/ftp-monitors/55555555-5555-4555-8555-555555555555" \
 -H "Authorization: Bearer $TOKEN"
```

## Response

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

## Häufige Fehler

- `401 Unauthorized` wenn du nicht authentifiziert bist
- `403 Forbidden` wenn du keine Schreibrechte hast (z.B. Global Supporter oder Read-only)
- `404 FTP monitor not found` wenn der Monitor nicht existiert

