---
title: "Save organization brand"
method: PUT
path: "/api/v1/org/brand"
tags: ["Organizations"]
---

# Save organization brand

`PUT /api/v1/org/brand`

Save the organization's brand appearance as edited by the user. Stores the
provided colors, logos, fonts and domain as-is without calling Brandfetch.

## Request body

- SaveOrganizationBrandRequest — The editable brand payload persisted when the user saves their brand appearance. Unlike a fetch, this does not call Brandfetch — it stores the values exactly as edited in the settings form.
  - `fonts` OrganizationBrandFont[], required
    - `origin` string, nullable, required
    - `type` string, required — Brandfetch font type, e.g. 'title' or 'body'
    - `name` string, required
  - `colors` OrganizationBrandColor[], required
    - `brightness` number, double, nullable, required
    - `type` string, required — Brandfetch color type, e.g. 'accent', 'brand', 'dark', 'light'
    - `hex` string, required
  - `logos` OrganizationBrandLogo[], required
    - `format` string, nullable, required — File format, e.g. 'svg', 'png', 'jpeg'
    - `url` string, required
    - `theme` string, nullable, required — Colour of the artwork itself: 'light' is a light/white logo (for dark backgrounds), 'dark' is a dark logo (for light backgrounds).
    - `type` string, required — Brandfetch logo type, e.g. 'logo', 'symbol', 'icon', 'other'
  - `description` string, nullable, required
  - `name` string, nullable, required
  - `domain` string, required

## Response `200`

Ok

- ApiOrganizationBrandResponse
  - `results` OrganizationBrand, required
    - `updatedAt` string, date-time, required
    - `fonts` OrganizationBrandFont[], required
      - `origin` string, nullable, required
      - `type` string, required — Brandfetch font type, e.g. 'title' or 'body'
      - `name` string, required
    - `colors` OrganizationBrandColor[], required
      - `brightness` number, double, nullable, required
      - `type` string, required — Brandfetch color type, e.g. 'accent', 'brand', 'dark', 'light'
      - `hex` string, required
    - `logos` OrganizationBrandLogo[], required
      - `format` string, nullable, required — File format, e.g. 'svg', 'png', 'jpeg'
      - `url` string, required
      - `theme` string, nullable, required — Colour of the artwork itself: 'light' is a light/white logo (for dark backgrounds), 'dark' is a dark logo (for light backgrounds).
      - `type` string, required — Brandfetch logo type, e.g. 'logo', 'symbol', 'icon', 'other'
    - `description` string, nullable, required
    - `name` string, nullable, required
    - `domain` string, required — Domain the brand was fetched for, e.g. 'acme.com'
    - `organizationUuid` string, uuid, required
  - `status` 'ok', required

## Other responses

- `default` — Error

---

[API](https://skmtc.net/lightdash/apis/lightdash-api.md) · [All operations](https://skmtc.net/lightdash/apis/lightdash-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lightdash/lightdash-api/versions/40c933755c9a/schema)
