Get Global Branding
get
                    /rest/v19/globalBranding
This endpoint retrieves the global branding properties defined for a site.
                
                Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
                - application/json
Default Response
Branding properties.
                
                
                    Root Schema : Branding Properties
    
      Type: 
      
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        Branding Properties- 
            backgroundColor: 
            string
            Title:Background ColorBackground color for the branding.
- 
            backgroundGradient: 
            string
            Title:Background GradientBackground Type.
- 
            borderColor: 
            string
            Title:Border ColorColor of the border.
- 
            borderWidth: 
            string
            Title:Border WidthWidth of the border.
- 
            imageAlt: 
            string
            Title:Image AltAlternate text for the image.
- 
            imageUrl: 
            string
            Title:Image UrlImage file path.
- 
            isDropShadow: 
            boolean
            Title:Is Drop ShadowDrop shadow property is enabled or not.
- 
            isTitleBold: 
            boolean
            Title:Is Title BoldFont type bold is enabled or not.
- 
            isTitleItalics: 
            boolean
            Title:Is Title ItalicsFont Style italics is enabled or not.
- 
            isTitleUnderline: 
            boolean
            Title:Is Title UnderlineFont format underlined is enabled or not.
- 
            title: 
            string
            Title:TitleTitle of the global branding.
- 
            titleColor: 
            string
            Title:Title ColorColor of the title font.
- 
            titleFont: 
            string
            Title:Title FontFont style for the title.
- 
            titleFontSize: 
            string
            Title:Title Font SizeSize of the title font.
- 
            titleJustify: 
            string
            Title:Title JustifyJustification for the title.
Examples
The following example shows how to retrieve the global branding properties defined for a site by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X GET -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/globalBrandig
Response Body Sample
{
  "titleFont": "Helvetica Neue,Helvetica,Arial,sans-serif",
  "titleFontSize": "15",
  "isTitleBold": false,
  "isTitleItalics": false,
  "isTitleUnderline": false,
  "titleColor": "#454545",
  "titleJustify": "LEFT",
  "title": "CPQ Cloud",
  "backgroundColor": "#F5F5F5",
  "backgroundGradient": "",
  "borderWidth": "0",
  "borderColor": "#FFFFFF",
  "isDropShadow": true,
  "imageUrl": "/logo/oracle_logo_sm.png",
  "imageAlt": "Oracle"
}