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

# Update organization branding

> Update an organization's branding.
Accepts: - palette: one of 'blue', 'purple', 'teal', 'green', 'orange', 'red', 'indigo', 'pink', 'slate', 'custom' - custom_colors: an object with primary, primary_hover, and primary_dark hex colors
Only super_admin users can update branding.



## OpenAPI

````yaml put /api/v1/organizations/{id}/branding
openapi: 3.1.0
info:
  title: Aegister API
  version: 1.0.5
servers: []
security: []
paths:
  /api/v1/organizations/{id}/branding:
    put:
      tags:
        - organizations
      summary: Update organization branding
      description: >-
        Update branding settings for an organization.


        Accepts:

        - palette: One of 'blue', 'purple', 'teal', 'green', 'orange', 'red',
        'indigo', 'pink', 'slate', 'custom'

        - custom_colors: Object with primary, primary_hover, primary_dark hex
        colors


        Only super_admin users can update branding.
      operationId: organizations_branding_update
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrandingUpdate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/BrandingUpdate'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/BrandingUpdate'
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: integer
                  messages:
                    type: array
                    items:
                      type: string
                  data:
                    type: object
                    properties:
                      palette:
                        type: string
                        enum:
                          - blue
                          - purple
                          - teal
                          - green
                          - orange
                          - red
                          - indigo
                          - pink
                          - slate
                          - custom
                      custom_colors:
                        type: object
                        properties:
                          primary:
                            type: string
                          primary_hover:
                            type: string
                          primary_dark:
                            type: string
                      platform_title:
                        type: string
                      logo_url:
                        type: string
                        nullable: true
                      favicon_url:
                        type: string
                        nullable: true
                      footer:
                        type: object
                        properties:
                          show_copyright:
                            type: boolean
                          copyright_text:
                            type: string
                          show_status_badge:
                            type: boolean
                          status_badge_url:
                            type: string
          description: Branding updated successfully
        '400':
          description: Invalid branding data
        '401':
          description: Unauthorized
        '404':
          description: Organization not found
      security:
        - ApiKeyAuth: []
        - ApiKeyQueryParam: []
components:
  schemas:
    BrandingUpdate:
      type: object
      properties:
        palette:
          allOf:
            - $ref: '#/components/schemas/PaletteEnum'
          description: |-
            Color palette name.

            * `blue` - blue
            * `purple` - purple
            * `teal` - teal
            * `green` - green
            * `orange` - orange
            * `red` - red
            * `indigo` - indigo
            * `pink` - pink
            * `slate` - slate
            * `custom` - custom
        custom_colors:
          type: object
          additionalProperties: {}
          description: >-
            Custom color overrides with primary, primary_hover, primary_dark hex
            values.
    PaletteEnum:
      enum:
        - blue
        - purple
        - teal
        - green
        - orange
        - red
        - indigo
        - pink
        - slate
        - custom
      type: string
      description: |-
        * `blue` - blue
        * `purple` - purple
        * `teal` - teal
        * `green` - green
        * `orange` - orange
        * `red` - red
        * `indigo` - indigo
        * `pink` - pink
        * `slate` - slate
        * `custom` - custom
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Aegister-Token
    ApiKeyQueryParam:
      type: apiKey
      in: query
      name: X-Aegister-Token

````