What are the things i can customize using the Branding API?

I’m using a Universal Login - New Look for my tenant.
Going over the APi’s at: Auth0 Management API v2
It seems that the response i should expect is:

{
    "favicon_url": "favicon-url",
    "logo_url": "logo-url"
}

What i actually get is:

{
    "colors": {
        "page_background": "#...",
        "primary": "#..."
    },
    "favicon_url": "favicon-url",
    "logo_url": "logo-url"
}

Which made me wonder what stuff I could actually control via the branding API.
I couldn’t find any reference documentation and would love to do know if there are other things i can changes using the branding API.

1 Like

It seems that the response i should expect is:

Note that this is just a sample, not a complete schema/model documentation. It’s also a sample request, not a response.

Afaik what you’re getting in the response is what you’re able to configure.

well that’s exactly the thing,
in another environment I have, which i haven’t changed the favicon_url i get:

{
"colors": {
    "page_background": "#...",
    "primary": "#..."
},
"logo_url": "logo-url"
}

Therefore, I’m still wondering if there are other things i can change via the branding API.

1 Like