Company logoTrust Center Documentation

Update brand settings

Update tenant brand settings including colors, fonts, text content, and footer configuration. Browse request parameters, authentication requirements,…

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

TypeScript Definitions

Use the request body type in TypeScript.

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?