> ## Documentation Index
> Fetch the complete documentation index at: https://docs.humanly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Branding

> Get and update organization branding settings

## Overview

Branding settings control the visual appearance and branding of interview invites and the candidate experience.

## Get Branding

Get organization/team branding settings.

**Endpoint:** `GET /qsi/gather/branding`

<CodeGroup>
  ```json Response theme={null}
  {
    "data": {
      "organizationId": "uuid",
      "logoUrl": "https://...",
      "primaryColor": "#3B82F6",
      "secondaryColor": "#2563EB",
      "customDomain": "interviews.yourcompany.com",
      "emailBranding": {
        "fromName": "Your Company",
        "fromEmail": "noreply@yourcompany.com"
      }
    },
    "meta": {
      "requestId": "uuid",
      "timestamp": "2024-01-01T00:00:00Z"
    }
  }
  ```
</CodeGroup>

## Update Branding

Update branding settings.

**Endpoint:** `PATCH /qsi/gather/branding`

<Callout type="info">
  Branding updates are a lower priority feature. Contact support if you need to modify branding settings.
</Callout>

<ParamField name="logoUrl" type="string">
  URL to your organization logo
</ParamField>

<ParamField name="primaryColor" type="string">
  Primary brand color (hex code)
</ParamField>

<ParamField name="secondaryColor" type="string">
  Secondary brand color (hex code)
</ParamField>

<ParamField name="customDomain" type="string">
  Custom domain for interview links
</ParamField>

<ParamField name="emailBranding" type="object">
  Email branding settings
</ParamField>

## Branding Elements

### Logo

Your organization logo appears on interview invites and the candidate experience page.

### Colors

Primary and secondary colors are used throughout the candidate experience to match your brand.

### Custom Domain

Use a custom domain for interview links (e.g., `interviews.yourcompany.com`).

### Email Branding

Customize the "from" name and email address for interview invite emails.

<Callout type="info">
  Branding customization requires proper domain verification and configuration. Contact support for assistance.
</Callout>

## Related Resources

<CardGroup cols={2}>
  <Card title="Message Groups" icon="mail" href="/api-reference/message-groups">
    Learn about message groups and templates
  </Card>

  <Card title="Interviews" icon="file-text" href="/api-reference/interviews">
    Learn about creating interviews
  </Card>
</CardGroup>
