core_brands_current_retrieve
GET/api/v3//core/brands/current/
Get current brand
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
matched_domain stringrequired
branding_title stringrequired
branding_logo stringrequired
branding_favicon stringrequired
ui_footer_links
object[]
required
ui_theme UiThemeEnum (string)required
Possible values: [automatic
, light
, dark
]
Default value:
automatic
flow_authentication string
flow_invalidation string
flow_recovery string
flow_unenrollment string
flow_user_settings string
flow_device_code string
default_locale stringrequired
{
"matched_domain": "string",
"branding_title": "string",
"branding_logo": "string",
"branding_favicon": "string",
"ui_footer_links": [
{
"href": "string",
"name": "string"
}
],
"flow_authentication": "string",
"flow_invalidation": "string",
"flow_recovery": "string",
"flow_unenrollment": "string",
"flow_user_settings": "string",
"flow_device_code": "string",
"default_locale": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());