Company logoTrust Center Documentation

Update brand settings

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

PATCH
/api/v1/brand

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

title*string

Trust center title

Length1 <= length
deployment_domains?string

Deployment domains configuration

primary_color*string

Primary brand color in hex format

Match^#[0-9a-fA-F]{6}$
background_color*string

Background color in hex format

Match^#[0-9a-fA-F]{6}$
text_color*string

Text color in hex format

Match^#[0-9a-fA-F]{6}$
font_family*string

Font family for the trust center

Length1 <= length
brand_extended?|

JSON field for advanced styling; accepts raw CSS string or an object with css (max 50,000 characters) and is sanitized server-side. Use cautiously to avoid breaking layout.

overview_text?string

Overview text displayed on the trust center

overview_text_2?string

Optional second column of overview content displayed alongside the primary overview

footer_text?string

Footer text

footer_links?array<>

Footer navigation links

Response Body

application/json

application/json

curl -X PATCH "https://app.orbiqhq.com/api/v1/brand" \  -H "Content-Type: application/json" \  -d '{    "title": "Acme Trust Center",    "primary_color": "#007bff",    "background_color": "#ffffff",    "text_color": "#0f172a",    "font_family": "Inter, sans-serif"  }'
{
  "success": true,
  "data": {
    "message": "Brand settings updated."
  }
}

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

Empty
Empty

How is this guide?