Uptimeify Docs

Monitor-Tags auflisten

Gibt alle einem bestimmten Monitor zugewiesenen Tags zurück. Readonly-Mitglieder sehen nur ihre eigenen Tags.

GET /api/monitor-tags

Query Parameter

  • monitorType (erforderlich): Typ des Monitors. Eines von: website | dns | icmp | smtp | ssh | tcp | ftp | imap_pop | customer_domain | customer_ip. Nutze customer_domain für Domain-Monitore (SSL/Ablauf) und customer_ip für DNSBL-/Blacklist-Monitore.
  • monitorId (erforderlich): Numerische ID des Monitors.

Beispiel (cURL)

BASE_URL="https://uptimeify.io"
TOKEN="<dein-api-token>"

curl -X GET "$BASE_URL/api/monitor-tags?monitorType=website&monitorId=101" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json"

Antwort (Response)

[
  {
    "id": 1,
    "publicId": "aaaaaaaa-aaaa-4aaa-8aaa-aaaaaaaaaaaa",
    "organizationId": 10,
    "name": "Produktion",
    "color": "red",
    "createdBy": 42,
    "createdAt": "2026-06-01T08:00:00.000Z",
    "updatedAt": "2026-06-01T08:00:00.000Z"
  }
]

Häufige Fehler

  • 400 Bad Request wenn monitorType oder monitorId fehlt oder ungültig ist
  • 401 Unauthorized wenn du nicht angemeldet bist
  • 403 Forbidden wenn du keinen Lesezugriff auf den Monitor hast
  • 404 Not Found wenn der Monitor nicht existiert

Auf dieser Seite