Skip to main content

core_brands_retrieve

GET 

/api/v3//core/brands/:brand_uuid/

Brand Viewset

Request

Path Parameters

    brand_uuid uuidrequired

    A UUID string identifying this Brand.

Responses

Schema
    brand_uuiduuidrequired
    domainstringrequired

    Domain that activates this brand. Can be a superset, i.e. a.b for aa.b and ba.b

    defaultboolean
    branding_titlestring
    branding_logostring
    branding_faviconstring
    branding_custom_cssstring
    branding_default_flow_backgroundstring
    flow_authenticationuuidnullable
    flow_invalidationuuidnullable
    flow_recoveryuuidnullable
    flow_unenrollmentuuidnullable
    flow_user_settingsuuidnullable
    flow_device_codeuuidnullable
    default_applicationuuidnullable

    When set, external users will be redirected to this application after authenticating.

    web_certificateuuidnullable

    Web Certificate used by the authentik Core webserver.

    attributes

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/core/brands/:brand_uuid/");
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
Parameters
— pathrequired