# List files Retrieves a paginated list of files for an asset with optional filtering. Endpoint: GET /v1/assets/{assetUuid}/files Version: 1.0.0 Security: Bearer ## Path parameters: - `assetUuid` (string, required) Unique identifier of the asset. ## Query parameters: - `status[eq]` (string) Filter by exact status match. Enum: "draft", "published", "unpublished", "archived", "removed" - `status[order]` (string) Sort order for status field. Values: asc, desc. - `variationType[eq]` (string) Filter by exact variation type match. Enum: "original", "thumbnail", "webOptimized", "mobileOptimized", "productDetail", "printReady", "socialMedia", "videoPoster", "videoPreview", "videoStreamLow", "videoStreamMedium", "videoStreamHigh" - `variationType[order]` (string) Sort order for variation type. Values: asc, desc. - `mimeType[eq]` (string) Filter by exact MIME type match. - `extension[eq]` (string) Filter by exact extension match. - `extension[contains]` (string) Filter by partial extension match. - `extension[starts]` (string) Filter by extension prefix. - `extension[ends]` (string) Filter by extension suffix. - `isAutogenerated[eq]` (boolean) Filter by autogenerated status. Values: true, false. - `createdAt[eq]` (string) Filter by exact creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[min]` (string) Filter by minimum creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[max]` (string) Filter by maximum creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[order]` (string) Sort order for creation timestamp. Values: asc, desc. - `storageSize[order]` (string) Sort order for storage size. Values: asc, desc. - `page` (integer) Page number for pagination. Default is 1. - `size` (integer) Page size for pagination. Default is 20. ## Response 200 fields (application/json): - `items` (array, required) - `items.uuid` (string, required) Unique identifier for this file. - `items.assetUuid` (string, required) Identifier of the parent asset this file belongs to. - `items.createdAt` (string, required) Timestamp when this file was created. Example: "2025-11-23T14:15:22.123456Z" - `items.status` (string, required) Current lifecycle status of this file. Enum: "awaitingUpload", "uploaded" - `items.variationType` (string, required) Type of file variation. Enum: "original", "thumbnail", "webOptimized", "mobileOptimized", "productDetail", "printReady", "socialMedia", "videoPoster", "videoPreview", "videoStreamLow", "videoStreamMedium", "videoStreamHigh" - `items.storageLocation` (string, required) Storage backend where this file is stored. Enum: "s3" - `items.mimeType` (string, required) MIME type of this file. - `items.extension` (string, required) File extension of this file. - `items.storageSize` (integer,null) File size in bytes. Null if not yet calculated. - `items.checksum` (string, required) SHA-256 checksum for file integrity verification. - `items.isAutogenerated` (boolean, required) Whether this file was automatically generated by the system. - `items.presignedUrl` (string, required) Temporary pre-signed URL for downloading this file. - `pagination` (object, required) - `pagination.page` (integer, required) - `pagination.size` (integer, required) - `pagination.totalItems` (integer, required) - `pagination.totalPages` (integer, required) ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)