Passer au contenu principal
GET
/
branding
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>"
  }
}

Autorisations

Authorization
string
header
requis

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Réponse

Branding settings successfully retrieved.

colors
object

Custom color settings.

favicon_url
string<strict-https-uri>

URL for the favicon. Must use HTTPS.

logo_url
string<strict-https-uri>

URL for the logo. Must use HTTPS.

font
object

Custom font settings.