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

# Show public organization branding

> Resolves public organization branding by encoded slug or encoded custom domain, with plain slug or host fallback. Linked accounts are ordered by account ID.



## OpenAPI

````yaml /openapi/nimbo_public.yml get /api/v1/sites/organizations/{id}
openapi: 3.1.0
info:
  title: Nimbo catalogs and sites
  version: 0.1.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; not a live API host
security: []
tags:
  - name: Countries
  - name: Catalogs
  - name: SAT Catalogs
  - name: Sites
  - name: Public Portals
  - name: Telehealth
paths:
  /api/v1/sites/organizations/{id}:
    get:
      tags:
        - Sites
      summary: Show public organization branding
      description: >-
        Resolves public organization branding by encoded slug or encoded custom
        domain, with plain slug or host fallback. Linked accounts are ordered by
        account ID.
      operationId: showSiteOrganization
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          example: '123'
      responses:
        '200':
          description: Public organization branding payload.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                additionalProperties: false
                properties:
                  data:
                    type: object
                    required:
                      - id
                      - type
                      - attributes
                      - relationships
                    additionalProperties: false
                    properties:
                      id:
                        type: string
                        example: '123'
                      type:
                        type: string
                        enum:
                          - organization
                      attributes:
                        type: object
                        required:
                          - agenda
                          - agenda_pro
                          - email
                          - image_url
                          - landing_page_info
                          - logo
                          - main_color
                          - name
                          - office_address
                          - office_city
                          - office_country
                          - office_state
                          - office_telephone
                          - office_zipcode
                          - slug
                          - slug_organization_portal
                          - telehealth_request_slug
                          - template
                          - title
                          - description
                          - header
                          - subheader
                          - disclaimer
                          - header_img
                          - phone
                          - telehealth_description
                          - telehealth_image
                          - schedule
                          - services
                          - about_us_practice
                          - photo
                          - about_organization_info
                          - social_networks
                          - configuration
                          - secondary_color
                          - clinic_gallery
                          - latitud
                          - longitud
                          - header_services
                        additionalProperties: false
                        properties:
                          name:
                            type: string
                            example: Demo Clinic
                          slug:
                            type: string
                            example: demo-clinic
                          landing_page_info:
                            type: object
                            additionalProperties: true
                          telehealth_request_slug:
                            type:
                              - string
                              - 'null'
                            example: demo-video
                          agenda:
                            type:
                              - boolean
                              - 'null'
                            example: true
                          agenda_pro:
                            type:
                              - boolean
                              - 'null'
                            example: false
                          email:
                            type:
                              - string
                              - 'null'
                            example: doctor@example.test
                          image_url:
                            type: string
                            example: >-
                              https://s3.amazonaws.com/synthetic-assets/accounts/logos/000/000/456/original/doctor-logo.png
                          office_address:
                            type:
                              - string
                              - 'null'
                            example: 123 Synthetic Avenue
                          office_city:
                            type:
                              - string
                              - 'null'
                            example: Test City
                          office_country:
                            type:
                              - string
                              - 'null'
                            example: MX
                          office_state:
                            type:
                              - string
                              - 'null'
                            example: Synthetic State
                          office_telephone:
                            type:
                              - string
                              - 'null'
                            example: +52 555 0100
                          office_zipcode:
                            type:
                              - string
                              - 'null'
                            example: '01000'
                          slug_organization_portal:
                            type: string
                            example: c/demo-doctor
                          template:
                            type: integer
                            example: 1
                          logo:
                            type: string
                            example: >-
                              https://s3.amazonaws.com/synthetic-assets/images/images/000/000/789/medium/clinic-logo.png
                          main_color:
                            type:
                              - string
                              - 'null'
                            example: '#1166aa'
                          title:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          description:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          header:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          subheader:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          disclaimer:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          header_img:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          phone:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          telehealth_description:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          telehealth_image:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          schedule:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          services:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          about_us_practice:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          photo:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          about_organization_info:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          social_networks:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          configuration:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          secondary_color:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          clinic_gallery:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          latitud:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          longitud:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                          header_services:
                            anyOf:
                              - type: object
                              - type: array
                              - type: string
                              - type: number
                              - type: boolean
                              - type: 'null'
                      relationships:
                        type: object
                        required:
                          - accounts
                        additionalProperties: false
                        properties:
                          accounts:
                            type: object
                            required:
                              - data
                            additionalProperties: false
                            properties:
                              data:
                                type: array
                                items:
                                  type: object
                                  required:
                                    - id
                                    - type
                                  additionalProperties: false
                                  properties:
                                    id:
                                      type: string
                                      example: '456'
                                    type:
                                      type: string
                                      enum:
                                        - account
        '404':
          description: >-
            The requested resource was not found or is outside the authorized
            patient scope.
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                additionalProperties: false
                properties:
                  error:
                    type: string
              examples:
                not_found:
                  value:
                    error: Not found

````