Branding abrufen
Gibt die Branding-Konfiguration der Organisation zurück, einschließlich Produktname, Theme-Farben sowie signierter URLs für Logos und Favicons. Erfordert die Admin-Rolle.
GET /api/organization/whitelabel/branding
Beispiel (cURL)
curl -X GET "$BASE_URL/api/organization/whitelabel/branding" \
-H "Cookie: $SESSION_COOKIE" \
-H "Accept: application/json"Antwort (Response)
{
"branding": {
"productName": "Acme Monitor",
"hideProductName": false,
"logoObjectKey": "branding/org-1/logo/light/1710000000-logo.svg",
"logoObjectKeyLight": "branding/org-1/logo/light/1710000000-logo.svg",
"logoObjectKeyDark": "branding/org-1/logo/dark/1710000000-logo-dark.svg",
"hideLogos": false,
"faviconObjectKey": "branding/org-1/favicon/light/1710000000-favicon.ico",
"faviconObjectKeyLight": "branding/org-1/favicon/light/1710000000-favicon.ico",
"faviconObjectKeyDark": "branding/org-1/favicon/dark/1710000000-favicon-dark.ico",
"themePrimary": "#43B1AE",
"themeSecondary": null,
"logoUrl": "https://s3.example.com/branding/org-1/logo/light/1710000000-logo.svg?...",
"logoLightUrl": "https://s3.example.com/branding/org-1/logo/light/1710000000-logo.svg?...",
"logoDarkUrl": "https://s3.example.com/branding/org-1/logo/dark/1710000000-logo-dark.svg?...",
"faviconUrl": "https://s3.example.com/branding/org-1/favicon/light/1710000000-favicon.ico?...",
"faviconLightUrl": "https://s3.example.com/branding/org-1/favicon/light/1710000000-favicon.ico?...",
"faviconDarkUrl": "https://s3.example.com/branding/org-1/favicon/dark/1710000000-favicon-dark.ico?...",
"updatedAt": "2026-03-01T10:00:00.000Z"
}
}Häufige Fehler
401 Unauthorizedwenn nicht authentifiziert403 Forbiddenwenn kein Admin
Domain löschen
Löscht eine eigene Domain. War die gelöschte Domain die primäre, wird die nächste verfügbare Domain zur primären befördert. Nur für Admins.
Domains auflisten
Gibt alle eigenen App-Domains der Organisation zurück. Es werden nur Domains mit der Rolle app zurückgegeben. Erfordert die Admin-Rolle.