Skip to main content

core_brands_current_retrieve

GET 

/api/v3//core/brands/current/

Get current brand

Responses

Schema
    matched_domainstringrequired
    branding_titlestringrequired
    branding_logostringrequired
    branding_faviconstringrequired
    branding_custom_cssstringrequired
    ui_footer_links object[]required
  • Array [
  • hrefstringnullablerequired
    namestringrequired
  • ]
  • ui_themeUiThemeEnum (string)required

    Possible values: [automatic, light, dark]

    Default value: automatic
    flow_authenticationstring
    flow_invalidationstring
    flow_recoverystring
    flow_unenrollmentstring
    flow_user_settingsstring
    flow_device_codestring
    default_localestringrequired

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/core/brands/current/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Auth