Skip to main content

BrandingItem

Properties

NameTypeDescriptionNotes
namestrname of branding item[optional]
product_namestrproduct name[optional]
action_button_colorstrhex value of color for action button[optional]
active_link_colorstrhex value of color for link[optional]
navigation_colorstrhex value of color for navigation bar[optional]
email_from_addressstremail from address[optional]
standard_logo_urlstrurl to standard logo[optional]
login_informational_messagestrlogin information message[optional]
}

Example

from sailpoint.v2024.models.branding_item import BrandingItem

branding_item = BrandingItem(
name='default',
product_name='product name',
action_button_color='0074D9',
active_link_color='011E69',
navigation_color='011E69',
email_from_address='[email protected]',
standard_logo_url='',
login_informational_message=''
)

[Back to top]