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

# Get Branding Logo

> Retrieve a fresh download URL for your organisation's branding logo.

Retrieve a signed download URL for the current organisation logo/brand image. This endpoint returns a pre-signed SAS URL that allows direct access to the asset.

<Note>
  If no branding logo has been uploaded for your organisation, this endpoint will return a 404 Not Found error.
</Note>

## Best Practices

1. **URL Freshness**: Download URLs are valid for 30 minutes. Always request a fresh URL before displaying the logo to users.
2. **Graceful Handling**: Handle 404 responses by showing a default placeholder logo in your application.
3. **Member Access**: Any authenticated member of the organisation can retrieve the branding logo.


## OpenAPI

````yaml GET /organisations/branding-logo
openapi: 3.1.0
info:
  title: Veridox Core API
  description: Veridox Core Platform API
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.uk.veridox.ai
    description: Live (UK)
  - url: https://api.ca.veridox.ai
    description: Live (CA)
security: []
tags:
  - name: Status
    description: System status and health check endpoints
  - name: Cases
    description: Case and case file management
  - name: Organisations
    description: Organisation management
  - name: Document Requests
    description: Document request management
  - name: Search
    description: Search functionality
  - name: Admin
    description: Administrative endpoints
paths:
  /organisations/branding-logo:
    get:
      tags:
        - Organisations
      summary: Get branding logo download URL
      description: >-
        Returns a fresh 30-minute download URL for the organisation's branding
        logo if one exists. Only organisation members can access this endpoint.
      operationId: OrganisationsController_getBrandingLogoUrl
      parameters: []
      responses:
        '200':
          description: Branding logo URL retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandingLogoDownloadResponseDto'
        '401':
          description: Unauthorized (invalid or missing authentication token)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDto'
        '404':
          description: Branding logo not found for this organisation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDto'
        '429':
          description: Too many requests (rate limit exceeded)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDto'
      security:
        - api-key: []
components:
  schemas:
    BrandingLogoDownloadResponseDto:
      type: object
      properties:
        download_url:
          type: string
          format: uri
        expires_at:
          type: string
          format: date-time
          pattern: >-
            ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
      required:
        - download_url
        - expires_at
    ErrorDto:
      type: object
      properties:
        error_code:
          type: string
          description: Machine-readable error code for programmatic handling
          examples:
            - request.cases.file.missing-risk-score
            - request.authentication.invalid-token
            - request.forbidden
            - request.cases.case.not-found
            - request.cases.case.already-locked
        error_message:
          type: string
          description: Human-readable error message explaining what went wrong
          example: >-
            User tried to perform an invalid operation on a file without a risk
            score.
        error_details:
          type: object
          example:
            field: email_address
      required:
        - error_code
        - error_message
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: x-api-key

````