Skip to main content

BrandingItemCreate

Properties

NameTypeDescriptionNotes
namestrname of branding item[required]
product_namestrproduct name[required]
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]
login_informational_messagestrlogin information message[optional]
file_standardbytearraypng file with logo[optional]
}

Example

from sailpoint.v3.models.branding_item_create import BrandingItemCreate

branding_item_create = BrandingItemCreate(
name='custom-branding-item',
product_name='product name',
action_button_color='0074D9',
active_link_color='011E69',
navigation_color='011E69',
email_from_address='no-reply@sailpoint.com',
login_informational_message='',
file_standard='\x00\x00\x00\x02'
)

[Back to top]