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

# Get uploaded file details

> The endpoint returns details about a specific uploaded file, including its processing status and any recognized documents.




## OpenAPI

````yaml GET /v1/documents/collections/{collection_id}/upload/{uploaded_file_id}/
openapi: 3.0.1
info:
  title: Truv API
  description: Truv API Documentation
  termsOfService: https://www.truv.com/legal/terms-of-use
  contact:
    email: support@truv.com
  version: v1
servers:
  - url: https://prod.truv.com
security:
  - ClientID: []
    AccessKey: []
tags:
  - name: Users
  - name: Bridge Token
  - name: Companies and Data Providers
  - name: Key Management
  - name: Account Links
  - name: Data Refresh
  - name: Customization Templates
  - name: Webhooks
  - name: Orders
  - name: Tasks
  - name: VOIE Reports
  - name: VOA Reports
  - name: Income Insights Reports
  - name: DDS Reports
  - name: Employment
  - name: Identity
  - name: Shifts
  - name: Pay Statements
  - name: Tax Documents
  - name: Parsed Documents
  - name: Reports
  - name: Uploaded Documents
  - name: Bank Accounts
  - name: Bank Statements
  - name: Deposit Switch Reports
  - name: Insurance Reports
  - name: Income Report
  - name: Scoring Attributes
  - name: Accounts
  - name: Transactions
  - name: Recurring Transactions
  - name: Document Collections
paths:
  /v1/documents/collections/{collection_id}/upload/{uploaded_file_id}/:
    parameters:
      - name: collection_id
        in: path
        description: Collection ID
        required: true
        schema:
          type: string
        example: a1b2c3d4e5f6478899aabbccddeeff00
      - name: uploaded_file_id
        in: path
        description: Uploaded File ID
        required: true
        schema:
          type: string
        example: f1234567890abcdef1234567890abcde
    get:
      tags:
        - Document Collections
      summary: Get uploaded file details
      description: >
        The endpoint returns details about a specific uploaded file, including
        its processing status and any recognized documents.
      operationId: collections_uploaded_file_retrieve
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadedFileDetail'
        '401':
          description: HTTP 401 Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error401'
        '403':
          description: HTTP 403 Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error403'
        '404':
          description: HTTP 404 Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error404'
components:
  schemas:
    UploadedFileDetail:
      type: object
      required:
        - file_id
        - filename
        - mime_type
        - status
        - file_url
        - created_at
        - updated_at
      properties:
        file_id:
          title: File ID
          type: string
          example: f1234567890abcdef1234567890abcde
        filename:
          title: Filename
          type: string
          example: merged_paystubs.pdf
        mime_type:
          title: MIME type
          type: string
          enum:
            - application/pdf
            - image/jpeg
            - image/png
            - image/tiff
            - image/webp
            - image/x-ms-bmp
            - image/heic
            - image/heif
          example: application/pdf
        validations:
          title: File validations
          type: object
          nullable: true
          properties:
            is_viable_size:
              type: boolean
              nullable: true
              description: Whether the file size is within acceptable limits
            is_supported_type:
              type: boolean
              nullable: true
              description: Whether the file type is supported
            is_accessible:
              type: boolean
              nullable: true
              description: Whether the file is accessible
            is_valid:
              type: boolean
              nullable: true
              description: Overall validation status
            is_readable:
              type: boolean
              nullable: true
              description: Whether the file can be read
            is_unique:
              type: boolean
              nullable: true
              description: Whether the file is unique (not a duplicate)
          example:
            is_viable_size: true
            is_supported_type: true
            is_accessible: true
            is_valid: true
            is_readable: true
            is_unique: true
        status:
          title: Processing status
          type: string
          enum:
            - pending
            - validating
            - validated
            - invalid
            - duplicate
            - processing
            - successful
            - failed
          example: successful
        file_url:
          title: File URL
          type: string
          format: uri
          example: https://example.com/files/file123xyz789.pdf
        user_id:
          title: User ID
          type: string
          nullable: true
          description: Truv user ID associated with this file
          example: a1b2c3d4e5f6478899aabbccddeeff00
        external_user_id:
          title: External User ID
          type: string
          nullable: true
          description: External system user ID associated with this file
          example: ext_user_789
        created_at:
          title: Created at
          type: string
          format: date-time
          example: '2025-11-11T10:00:00Z'
        updated_at:
          title: Updated at
          type: string
          format: date-time
          example: '2025-11-11T10:05:00Z'
    Error401:
      description: ''
      type: object
      properties:
        error:
          description: ''
          type: object
          properties:
            code:
              description: ''
              type: string
              example: authentication_failed
            message:
              description: ''
              type: string
              example: No such token
    Error403:
      description: ''
      type: object
      properties:
        error:
          description: ''
          type: object
          properties:
            code:
              description: ''
              type: string
              example: not_authenticated
            message:
              description: ''
              type: string
              example: Authentication credentials were not provided.
    Error404:
      description: ''
      type: object
      properties:
        detail:
          description: ''
          type: string
          example: Not Found.
  securitySchemes:
    ClientID:
      type: apiKey
      description: Client ID
      name: X-Access-Client-Id
      in: header
    AccessKey:
      type: apiKey
      description: Client Access Key
      name: X-Access-Secret
      in: header

````