# List family asset types Retrieves a paginated list of asset type associations for a family. Endpoint: GET /v1/families/{familyUuid}/asset-types Version: 1.0.0 Security: Bearer ## Path parameters: - `familyUuid` (string, required) Unique identifier of the family. ## Query parameters: - `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 family-asset type association. - `items.familyUuid` (string, required) Identifier of the family this association belongs to. - `items.productAssetTypeUuid` (string, required) Identifier of the product asset type that is associated. - `items.createdAt` (string, required) Timestamp when the association was created. Example: "2025-11-23T14:15:22.123456Z" - `items.updatedAt` (string, required) Timestamp when the association was last modified. Example: "2025-11-23T14:15:22.123456Z" - `items.isRequired` (boolean, required) Whether assets of this type are required for products in this family. - `items.minCount` (integer, required) Minimum number of assets of this type required. - `items.maxCount` (integer,null, required) Maximum number of assets of this type allowed. Null means unlimited. - `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)