> ## Documentation Index
> Fetch the complete documentation index at: https://api-doc.fidly.be/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Branding



## OpenAPI

````yaml /openapi.json get /brandings/{branding_uuid}
openapi: 3.1.0
info:
  title: Fidly API
  version: 1.0.0
servers:
  - url: https://api.fidly.be
    description: Production
security: []
paths:
  /brandings/{branding_uuid}:
    get:
      tags:
        - brandings
      summary: Get Branding
      operationId: get_branding_brandings__branding_uuid__get
      parameters:
        - name: branding_uuid
          in: path
          required: true
          schema:
            type: string
            title: Branding Uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandingOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandingOut:
      properties:
        id:
          type: string
          title: Id
          description: Opaque unique identifier of the branding.
        label:
          anyOf:
            - type: string
            - type: 'null'
          title: Label
          description: Name given to the branding by the company.
        is_default:
          type: boolean
          title: Is Default
          description: '`true` when this is the branding applied to the company''s documents.'
      additionalProperties: true
      type: object
      required:
        - id
        - label
        - is_default
      title: BrandingOut
      description: >-
        A visual identity of the company, identified by an opaque `id`.


        A branding decides how the company's documents are rendered. The API
        exposes what names

        one and which one applies by default; the logo and the layout settings
        behind it belong to

        the interface and are never returned.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````