---
title: "FTP Monitor abrufen"
description: "Gibt Details zu einem FTP Monitor zurück."
---

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

Die Response enthält nur den FTP-Monitor selbst und bettet keinen vollständigen Kunden-Datensatz ein.

## 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 GET \
  "$BASE_URL/api/ftp-monitors/55555555-5555-4555-8555-555555555555" \
  -H "Authorization: Bearer $TOKEN"
```

## Response

```json
{
  "id": 400,
  "organizationId": 1,
  "customerId": 10,
  "name": "Partner FTP",
  "hostname": "ftp.deinkunde.com",
  "port": 21,
  "status": "active",
  "checkInterval": 30,
  "timeoutSeconds": 30,
  "allowedCheckCountryCodes": null,
  "notificationPhoneNumber": null,
  "notificationEmail": null,
  "lastCheckedAt": null,
  "createdAt": "2026-02-25T10:00:00.000Z",
  "updatedAt": "2026-02-25T10:00:00.000Z",
  "config": {
    "user": "monitor",
    "password": "<ftp-password>",
    "secure": false
  },
  "ftpConfig": {
    "user": "monitor",
    "password": "<ftp-password>",
    "secure": false
  }
}
```

## Häufige Fehler

- `400 FTP monitor public ID (UUID) required` wenn `ftpMonitorPublicId` fehlt oder ungültig ist
- `401 Unauthorized` wenn du nicht authentifiziert bist
- `403 Forbidden` wenn du keinen Zugriff hast
- `404 FTP monitor not found` wenn der Monitor nicht existiert

