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

# Fetch a signed URL for the organization logo

> Return a short-lived signed URL for the organization's logo.

Deliberately JSON rather than a 307 to the signed URL. A redirect reads like
the natural fit for an ``<img src>``, but an ``<img>`` tag cannot send an
``Authorization`` header, so the request arrives unauthenticated, is
rejected, and the browser blocks the cross-origin response (ORB) before the
redirect is ever followed. The client fetches this endpoint with its normal
authenticated transport and puts the returned storage URL in the tag; that
URL carries its own signature and needs no header.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /organizations/{organization_id}/logo
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /organizations/{organization_id}/logo:
    get:
      tags:
        - Organizations
      summary: Fetch a signed URL for the organization logo
      description: >-
        Return a short-lived signed URL for the organization's logo.


        Deliberately JSON rather than a 307 to the signed URL. A redirect reads
        like

        the natural fit for an ``<img src>``, but an ``<img>`` tag cannot send
        an

        ``Authorization`` header, so the request arrives unauthenticated, is

        rejected, and the browser blocks the cross-origin response (ORB) before
        the

        redirect is ever followed. The client fetches this endpoint with its
        normal

        authenticated transport and puts the returned storage URL in the tag;
        that

        URL carries its own signature and needs no header.
      operationId: get_organization_logo_organizations__organization_id__logo_get
      parameters:
        - name: organization_id
          in: path
          required: true
          schema:
            type: string
            title: Organization Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationLogoUrl'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrganizationLogoUrl:
      properties:
        url:
          type: string
          title: Url
          description: >-
            Signed storage URL for the logo. Load it directly (e.g. as an image
            source); it carries its own signature and needs no auth header.
            Treat it as short-lived and refetch rather than persist.
        expires_in:
          type: integer
          title: Expires In
          description: Seconds until the URL expires, from when it was issued.
      type: object
      required:
        - url
        - expires_in
      title: OrganizationLogoUrl
      description: A signed URL for reading an organization's logo.
    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

````