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