# List files Returns a paginated list of Files for the specified site. Supports filtering and sorting. Endpoint: GET /site/{siteId}/ahds/v1/file Version: 1.0 Security: bearer ## Path parameters: - `siteId` (number, required) Site identifier ## Query parameters: - `page` (number) Page number (0-indexed) - `pageSize` (number) Number of items per page - `sortBy` (string) Field to sort by Enum: "createdAt", "updatedAt", "downloadUrl", "mimeType", "name", "notes", "sizeBytes" - `sortOrder` (string) Sort order Enum: "asc", "desc" - `downloadUrl` (string) URL that can be used to download the file content. - `isActive` (boolean) Whether the file is active and available for use. - `mimeType` (string) MIME type of the file, e.g. 'application/pdf'. - `name` (string) Human-readable file name, typically including extension. - `notes` (string) Free-text notes about the file. ## Response 200 fields ## Response 401 fields