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

# Get public branding information

> Retrieves the public branding information for an organization, such as its display name, logo, and theme colors. You can use either the organization's primary ID (`org_...`) or its external UUID as the identifier. This is a public, unauthenticated endpoint.



## OpenAPI

````yaml /api/en/workspaces.yaml get /organizations/{id}/branding
openapi: 3.0.3
info:
  title: Altostrat Workspaces API
  version: 1.0.0
  description: >-
    The Altostrat Workspaces API is the microservice responsible for tenancy,
    billing, user identity, and organizational hierarchy.

    It serves as the foundational layer for all multi-tenancy and subscription
    logic within the Altostrat SDX platform, enabling the secure separation of
    customer data and resources for SD-WAN, network automation, and agentic AI
    features.

    This API allows you to programmatically manage:

    - **Workspaces:** The top-level containers for all tenant resources, users,
    and billing configurations.

    - **Organizations:** Hierarchical entities used to model customer tenants or
    business units, track resource usage, and apply limits.

    - **Billing & Subscriptions:** The financial accounts and Stripe-powered
    subscriptions that govern access to Altostrat SDX features and resources.

    - **Members & Access:** The users and their specific roles (Owner, Admin,
    Viewer) within a workspace.

    Developers use this API to build the structural foundation and manage the
    billing lifecycle upon which all other Altostrat SDX automation and AI
    features operate.
servers:
  - url: https://v1.api.altostrat.io
    description: Production API Server
security:
  - bearerAuth: []
tags:
  - name: Workspaces
    description: Manage workspaces, the top-level containers for all resources.
  - name: Workspace Members
    description: Manage user access and roles within a workspace.
  - name: Organizations
    description: Manage hierarchical organizations for tenancy and resource segmentation.
  - name: Billing Accounts
    description: Manage financial accounts linked to Stripe for billing and subscriptions.
  - name: Subscriptions
    description: Manage product subscriptions powered by Stripe.
  - name: Invoices
    description: Retrieve invoice history and preview upcoming billing changes.
  - name: Payment Methods
    description: Manage customer payment methods for subscriptions.
  - name: Public
    description: Unauthenticated endpoints for retrieving public organization information.
paths:
  /organizations/{id}/branding:
    get:
      tags:
        - Public
      summary: Get public branding information
      description: >-
        Retrieves the public branding information for an organization, such as
        its display name, logo, and theme colors. You can use either the
        organization's primary ID (`org_...`) or its external UUID as the
        identifier. This is a public, unauthenticated endpoint.
      parameters:
        - name: id
          in: path
          required: true
          description: The ID (`org_...`) or external UUID of the organization.
          schema:
            type: string
          example: org_aBcDeFg123456789
      responses:
        '200':
          description: Public branding information for the organization.
          content:
            application/json:
              schema:
                type: object
                properties:
                  name:
                    type: string
                    description: The public display name of the organization.
                    example: ACME Corporation
                  picture:
                    type: string
                    format: uri
                    nullable: true
                    description: A URL to the organization's logo.
                    example: https://cdn.altostrat.io/logos/acme.png
                  branding:
                    $ref: '#/components/schemas/Branding'
        '404':
          description: Not Found - No organization was found for the given identifier.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                type: not_found_error
                code: resource_not_found
                message: Organization not found.
                doc_url: https://docs.altostrat.io/errors/resource_not_found
      security: []
components:
  schemas:
    Branding:
      type: object
      properties:
        display_name:
          type: string
          nullable: true
          description: >-
            The public-facing name of the organization, used for branding
            purposes.
          example: ACME Corp
        login_hint:
          type: string
          nullable: true
          description: >-
            A unique, URL-friendly identifier used to pre-fill the organization
            in login flows.
          example: acme-corp
        colors:
          type: object
          nullable: true
          description: >-
            A map of key-value pairs representing the organization's theme
            colors.
          additionalProperties:
            type: string
          example:
            primary: '#FF5733'
            page_background: '#FFFFFF'
    ErrorResponse:
      type: object
      properties:
        type:
          type: string
          description: A broad category for the error (e.g., 'invalid_request_error').
          example: invalid_request_error
        code:
          type: string
          description: A short, unique string identifying the specific error.
          example: parameter_missing
        message:
          type: string
          description: A human-readable description of what went wrong.
          example: The 'name' parameter is required for this request.
        doc_url:
          type: string
          description: >-
            A direct link to the documentation page for this specific error
            code.
          example: https://docs.altostrat.io/errors/parameter_missing
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter your JWT in the format: Bearer {token}'

````