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 Top

Response

Supported Media Types

Default Response

Branding properties.
Body ()
Root Schema : Branding Properties
Type: object
Title: Branding Properties
Show Source
Back to Top

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"
}
Back to Top