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

# Generate a valid temporary URL for a private file based on the given UUID.

> URL is valid for 7 days.




## OpenAPI

````yaml /openapi/chat-client.yaml get /files/{uuid}/temporary-url
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /files/{uuid}/temporary-url:
    get:
      tags:
        - files
      summary: >-
        Generate a valid temporary URL for a private file based on the given
        UUID.
      description: |
        URL is valid for 7 days.
      parameters:
        - in: path
          name: uuid
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````