Company logoTrust Center Documentation

Update brand settings

Update tenant brand settings including colors, fonts, text content, and footer configuration.

PATCH
/api/v1/brand
AuthorizationBearer <token>

In: header

titlestring

Trust center title

Length1 <= length
deployment_domains?string

Deployment domains configuration

primary_colorstring

Primary brand color in hex format

Match^#[0-9a-fA-F]{6}$
background_colorstring

Background color in hex format

Match^#[0-9a-fA-F]{6}$
font_familystring

Font family for the trust center

Length1 <= length
overview_text?string

Overview text displayed on the trust center

footer_text?string

Footer text

footer_links?array<FooterLink>

Footer navigation links

Response Body

const body = JSON.stringify({  "title": "Acme Trust Center",  "primary_color": "#007bff",  "background_color": "#ffffff",  "font_family": "Inter, sans-serif"})fetch("https://app.orbiqhq.com/api/v1/brand", {  method: "PATCH",  headers: {    "Content-Type": "application/json"  },  body})
{
  "success": true,
  "data": {
    "message": "Brand settings updated."
  }
}

{
  "error": "Invalid input: primary_color: Invalid hex color format"
}

Empty
Empty

How is this guide?