# Get file upload Returns a single File Upload by its unique identifier. Endpoint: GET /site/{siteId}/ahds/v1/file-upload/{fileUploadId} Version: 1.0 Security: bearer ## Path parameters: - `siteId` (number, required) Site identifier - `fileUploadId` (string, required) File Upload unique identifier (UUID) ## Response 200 fields (application/json): - `contentType` (string, required) MIME type of the uploaded file (e.g., 'application/pdf', 'image/jpeg'). - `createdAt` (string, required) Timestamp when the file was created/uploaded in the system. Example: "2025-01-01T00:00:00.000Z" - `extensions` (object, required) Vendor- or practice-specific extensions. - `fileName` (string, required) Original file name as provided by the client or system. - `fileUploadId` (string, required) Canonical identifier for this file upload. Example: "123e4567-e89b-12d3-a456-426614174000" - `notes` (string, required) Optional notes or description associated with the file. - `sizeBytes` (number, required) Size of the uploaded file in bytes. - `updatedAt` (string, required) Timestamp when the file metadata was last updated. Example: "2025-01-01T00:00:00.000Z" ## Response 401 fields ## Response 404 fields