Uptimeify Docs

Branding aktualisieren

Aktualisiert die Branding-Konfiguration der Organisation. Alle Felder sind optional — nur gesendete Felder werden aktualisiert. Wird productName oder eine Theme-Farbe auf null gesetzt, wird sie geleert. Erfordert die Admin-Rolle.

PATCH /api/organization/whitelabel/branding

Theme-Farben akzeptieren CSS-Custom-Property-Tokens (z.B. --color-red-500) oder Hex-Farben (z.B. #43B1AE). Ungültige Werte werden abgelehnt.

Anfrage (Request Body) (alle optional)

FeldTypBeschreibung
productNamestring|nullAnzeigename des Produkts (1–80 Zeichen). null leert ihn.
hideProductNamebooleanBlendet den Produktnamen in der UI aus
hideLogosbooleanBlendet alle Logos in der UI aus
themePrimarystring|nullPrimäre Theme-Farbe (Hex oder CSS-Variable). null leert sie.
themeNeutralstring|nullNeutrale/sekundäre Theme-Farbe (Hex oder CSS-Variable). null leert sie.

Beispiel (cURL)

curl -X PATCH "$BASE_URL/api/organization/whitelabel/branding" \
  -H "Cookie: $SESSION_COOKIE" \
  -H "Content-Type: application/json" \
  -d '{
    "productName": "Acme Monitor",
    "themePrimary": "#43B1AE",
    "hideProductName": false
  }'

Antwort (Response)

{
  "branding": {
    "productName": "Acme Monitor",
    "hideProductName": false,
    "hideLogos": false,
    "themePrimary": "#43B1AE",
    "themeSecondary": null,
    "updatedAt": "2026-04-15T12:00:00.000Z"
  }
}

Häufige Fehler

  • 401 Unauthorized wenn nicht authentifiziert
  • 403 Forbidden wenn kein Admin

Auf dieser Seite