Uptimeify Docs
MonitorsFtp monitors

Delete FTP Monitor

Deletes an FTP monitor.

DELETE /api/ftp-monitors/:ftpMonitorPublicId

Authentication

Authorization: Bearer <token>

Parameters

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

Example (cURL)

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

{ "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

On this page