Skip to content

assumedBrand

Get the assumed brand for the current user

Arguments

branded_url · String · The URL from which the brand is assumed
custom_sign_in_path · String · The custom sign in path for the brand
partner_name · String · The name of the partner brand

Returns

AssumedBrand

Example

query assumedBrand(
$brand_id: ID
$branded_url: String
$custom_sign_in_path: String
$partner_name: String
) {
assumedBrand(
brand_id: $brand_id
branded_url: $branded_url
custom_sign_in_path: $custom_sign_in_path
partner_name: $partner_name
) {
branded_favicon_url
branded_logo_url
id
theme_accent_primary
theme_accent_primary_hover
theme_background_hover
theme_background_input
theme_background_primary
theme_background_secondary
theme_background_sidebar
theme_border_input
theme_border_primary
theme_text_sidebar
theme_text_sidebar_active
theme_text_sidebar_tab_bar
}
}