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

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

## Authentication

`Authorization: Bearer <token>`

## Parameters

- `ftpMonitorPublicId` (Path, required): FTP monitor public UUID.

## Example (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 }
```

## Common Errors

- `401 Unauthorized` if you are not authenticated
- `403 Forbidden` if you do not have write access (e.g. global supporter or read-only)
- `404 FTP monitor not found` if the monitor does not exist

