Management API
TypeScript
import { ManagementClient } from "auth0"; async function main() { const client = new ManagementClient({ token: "<token>", }); await client.branding.update({}); } main();
{ "colors": { "primary": "<string>", "page_background": "<string>" }, "favicon_url": "<string>", "logo_url": "<string>", "font": { "url": "<string>" } }
Update branding settings.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Branding settings
Custom color settings.
Show child attributes
URL for the favicon. Must use HTTPS.
URL for the logo. Must use HTTPS.
Custom font settings.
Branding settings successfully updated.
Was this page helpful?