Request Body

Parameter NameParameter TypeDescription
nameText (Required)Name of the Brand.
descriptionText (Optional)Brand Description
colorObjectColor object shall contain the primary color details of your brand.
fontObjectFont Object shall contain the font details about your brand.
buttonObjectButton object contains the customization of the Edit page.
//Sample request Object
{
    "name": "My App Branding",
    "description": "My Brand Description",
    "color": {
        "primary": {
            "main": "#BA0E1C",
            "light": "#F2F2F2",
            "contrastText": "#F9F9F9"
        }
    },
    "font": {
  "family": "Party Confetti",
  "format": "truetype",
  "url": "https://pictory-static.pictorycontent.com/static/fonts/Party_Confetti/Party_Confetti.ttf"
 },
  "button":{
        "notificationBell":{
            "visible": true
        },
        "downloadVideo":{
            "visible": true
        }
  }
}

Brand Color

Parameter NameParameter TypeDescription
mainText (Required)The main color of your brand. Acceptable value: Hex-Code
lightText (Required)The lighter shade of your brand color.
Acceptable value: Hex-Code.
e.g.: #FFFFFF
contrastTextText (Required)Contrast Text color to be used with your main brand color.
Acceptable value: Hex-Code.
e.g.: #FFFFFF
darkText (Required)Darker Shade of your brand color.
Acceptable value: Hex-Code.
e.g.: #FFFFFF
//e.g. Brand Color Object
color": {
        "primary": {
            "main": "#BA0E1C",
            "light": "#F2F2F2",
            "contrastText": "#F9F9F9",
            "dark": "BA0E1C"
        }
    }

Brand Font

Parameter NameParameter TypeDescription
familyText (Required)Name of the Font. e.g. Arial, Calibri. The supported Font list is mentioned here.
urlText (Optional)Provide the url of the font (In case the Pictory does not support your brand font)
formatChoice (Optional)Type of the font. Pass this value only if you are providing custom font url
e.g: truetype
//e.g Font Object

"font": {
  "family": "Party Confetti",
  "format": "truetype",
  "url": "https://pictory-static.pictorycontent.com/static/fonts/Party_Confetti/Party_Confetti.ttf"
 }

Customize Buttons on the Video Summary Page

//e.g Button Object
"button": {
      "downloadVideo": {
        "visible": true
      },
      "notificationBell": {
        "visible": false
      },
      "autoHighlight": {
        "visible": true
      }
    },
    "contextMenu": {
      "downloadVideo": {
        "visible": false,
      },
    },
    "tab": {
      "highlight": {
        "label": "My Selected Clips"
      }
    }
Language
Click Try It! to start a request and see the response here!