QFind anything/
API Reference

Tenant Branding

Org-wide display name and logo shared by the app UI and email templates. Stored on Tenant.branding, separate from email delivery settings.

What is tenant branding

Branding is the canonical org-level identity for a tenant: display name and logo URL. It is used by:

  • The app UI (via GET /users/mememberships[].tenant.branding)
  • Email templates (merged into email settings responses as fromName / logoUrl)

Branding is stored in Tenant.branding (JSON). Email-specific fields (enabled, replyTo, locale, notification toggles) remain in emailPreferences.

Fields

FieldDescription
displayNameOrganization name shown in the app and email header (e.g. "Acme Finance")
logoUrlOptional logo URL for app chrome and HTML email templates

Operations

OperationMethodEndpoint
Get brandingGET/tenants/:id/branding
Update brandingPATCH/tenants/:id/branding

Legacy email-settings fields

PATCH /tenants/:id/email-settings still accepts fromName and logoUrl for backward compatibility. Those values are written to Tenant.branding and stripped from persisted emailPreferences. Prefer PATCH /tenants/:id/branding for UI branding screens.