v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB

Get Theme

Get the icon for a tenant

get/theme

Headers

originstring nullable

Response

Successful Response

namestring required

Internal name of the tenant.

slugstring required

URL-safe unique identifier for the tenant.

domainstring nullable

Primary email/web domain associated with the tenant.

timezonestring required

Default IANA timezone for the tenant.

localestring required

Default locale for the tenant.

display_namestring nullable

Human-friendly display name shown in the UI.

mottostring nullable

Short tagline shown in the tenant's UI.

logo_urlstring nullable

URL of the tenant's primary logo.

square_logo_urlstring nullable

URL of the tenant's square logo variant.

favicon_urlstring nullable

URL of the tenant's favicon.

chat_square_logo_urlstring nullable

URL of the square logo shown in the chat UI.

primary_colorstring nullable

Primary brand color (hex).

secondary_colorstring nullable

Secondary brand color (hex).

themestring nullable

Name of the UI theme applied.

Example response

{
  "name": "Acme Corp",
  "slug": "acme-corp",
  "domain": "acme.com",
  "timezone": "Europe/Berlin",
  "locale": "en-US",
  "display_name": "Acme Corporation",
  "motto": "Building the future.",
  "logo_url": "https://cdn.example.com/acme/logo.png",
  "square_logo_url": "https://cdn.example.com/acme/logo-square.png",
  "favicon_url": "https://cdn.example.com/acme/favicon.ico",
  "chat_square_logo_url": "https://cdn.example.com/acme/chat-logo.png",
  "primary_color": "#1A2B3C",
  "secondary_color": "#4D5E6F",
  "theme": "light"
}